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

Commit 7386009

Browse files
committed
add assert conditions
1 parent 6c81637 commit 7386009

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_dbt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,9 +339,9 @@ def test_integration_basic_dbt(self):
339339
# 5 diffs were ran
340340
assert diff_string.count('<>') == 5
341341
# 4 with no diffs
342-
assert diff_string.count('No row differences')
342+
assert diff_string.count('No row differences') == 4
343343
# 1 with a diff
344-
assert diff_string.count('| Rows Added | Rows Removed')
344+
assert diff_string.count('| Rows Added | Rows Removed') == 1
345345

346346

347347
def test_integration_cloud_dbt(self):

0 commit comments

Comments
 (0)