Skip to content

Commit

Permalink
fail tests on purpose
Browse files Browse the repository at this point in the history
  • Loading branch information
guidopetri committed Feb 6, 2024
1 parent ab39283 commit 42e93ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/query_runner/test_bigquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class TestBigQueryQueryRunner(unittest.TestCase):
def test_annotate_query_with_use_query_annotation_option(self):
query_runner = BigQuery({"useQueryAnnotation": True})

self.assertTrue(query_runner.should_annotate_query)
self.assertFalse(query_runner.should_annotate_query)

metadata = {
"Username": "username",
Expand All @@ -24,7 +24,7 @@ def test_annotate_query_with_use_query_annotation_option(self):
"Scheduled: False */ SELECT a FROM tbl"
)

self.assertEqual(query_runner.annotate_query(query, metadata), expect)
self.assertNotEqual(query_runner.annotate_query(query, metadata), expect)

def test_annotate_query_without_use_query_annotation_option(self):
query_runner = BigQuery({"useQueryAnnotation": False})
Expand Down

0 comments on commit 42e93ad

Please sign in to comment.