Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit e7f75a9

Browse files
committed
fix tests
1 parent ef351cc commit e7f75a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_dbt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ def test_local_diff(self, mock_diff_tables):
440440
threaded=True,
441441
algorithm=Algorithm.JOINDIFF,
442442
extra_columns=ANY,
443-
where_filter=where,
443+
where=where,
444444
)
445445
self.assertEqual(len(mock_diff_tables.call_args[1]["extra_columns"]), 2)
446446
self.assertEqual(mock_connect.call_count, 2)
@@ -469,7 +469,7 @@ def test_local_diff_no_diffs(self, mock_diff_tables):
469469
_local_diff(diff_vars)
470470

471471
mock_diff_tables.assert_called_once_with(
472-
mock_table1, mock_table2, threaded=True, algorithm=Algorithm.JOINDIFF, extra_columns=ANY, where_filter=where
472+
mock_table1, mock_table2, threaded=True, algorithm=Algorithm.JOINDIFF, extra_columns=ANY, where=where
473473
)
474474
self.assertEqual(len(mock_diff_tables.call_args[1]["extra_columns"]), 2)
475475
self.assertEqual(mock_connect.call_count, 2)

0 commit comments

Comments
 (0)