Skip to content

Commit

Permalink
revert change made in pr 890 to go along with core revert (#894) (#895)
Browse files Browse the repository at this point in the history
(cherry picked from commit d7fb235)

Co-authored-by: Matthew McKnight <[email protected]>
  • Loading branch information
github-actions[bot] and McKnight-42 authored Aug 23, 2023
1 parent 1e3a511 commit c4ebde3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/functional/adapter/expected_stats.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from dbt.tests.util import AnyString, AnyInteger
from dbt.tests.util import AnyString, AnyFloat


def bigquery_stats(is_table, partition=None, cluster=None):
Expand All @@ -10,14 +10,14 @@ def bigquery_stats(is_table, partition=None, cluster=None):
"num_bytes": {
"id": "num_bytes",
"label": AnyString(),
"value": AnyInteger(),
"value": AnyFloat(),
"description": AnyString(),
"include": True,
},
"num_rows": {
"id": "num_rows",
"label": AnyString(),
"value": AnyInteger(),
"value": AnyFloat(),
"description": AnyString(),
"include": True,
},
Expand Down

0 comments on commit c4ebde3

Please sign in to comment.