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

Commit d388905

Browse files
committed
update tests
1 parent 95722d4 commit d388905

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

tests/test_dbt.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,6 +520,7 @@ def test_local_diff(self, mock_diff_tables):
520520
algorithm=Algorithm.JOINDIFF,
521521
extra_columns=ANY,
522522
where=where,
523+
skip_null_keys=True,
523524
)
524525
self.assertEqual(len(mock_diff_tables.call_args[1]["extra_columns"]), 2)
525526
self.assertEqual(mock_connect.call_count, 2)
@@ -557,7 +558,13 @@ def test_local_diff_no_diffs(self, mock_diff_tables):
557558
_local_diff(diff_vars)
558559

559560
mock_diff_tables.assert_called_once_with(
560-
mock_table1, mock_table2, threaded=True, algorithm=Algorithm.JOINDIFF, extra_columns=ANY, where=where
561+
mock_table1,
562+
mock_table2,
563+
threaded=True,
564+
algorithm=Algorithm.JOINDIFF,
565+
extra_columns=ANY,
566+
where=where,
567+
skip_null_keys=True,
561568
)
562569
self.assertEqual(len(mock_diff_tables.call_args[1]["extra_columns"]), 2)
563570
self.assertEqual(mock_connect.call_count, 2)

0 commit comments

Comments
 (0)