Skip to content

Commit

Permalink
Fix expected number of test models
Browse files Browse the repository at this point in the history
  • Loading branch information
kconvey committed Dec 19, 2019
1 parent 98c6eac commit e6ab64e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def test__bigquery_simple_run(self):
self.run_dbt(['seed', '--full-refresh'])
results = self.run_dbt()
# Bump expected number of results when adding new model
self.assertEqual(len(results), 7)
self.assertEqual(len(results), 8)
self.assert_nondupes_pass()


Expand All @@ -64,7 +64,7 @@ class TestUnderscoreBigQueryRun(TestBaseBigQueryRun):
def test_bigquery_run_twice(self):
self.run_dbt(['seed'])
results = self.run_dbt()
self.assertEqual(len(results), 7)
self.assertEqual(len(results), 8)
results = self.run_dbt()
self.assertEqual(len(results), 7)
self.assertEqual(len(results), 8)
self.assert_nondupes_pass()

0 comments on commit e6ab64e

Please sign in to comment.