Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update expected values #916

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changes/unreleased/Fixes-20230907-161347.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: Fixes
body: changes expected value types to AnyInteger to take into account changes in core
time: 2023-09-07T16:13:47.005796-05:00
custom:
Author: McKnight-42
Issue: "915"
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, AnyFloat
from dbt.tests.util import AnyString, AnyInteger


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": AnyFloat(),
"value": AnyInteger(),
"description": AnyString(),
"include": True,
},
"num_rows": {
"id": "num_rows",
"label": AnyString(),
"value": AnyFloat(),
"value": AnyInteger(),
"description": AnyString(),
"include": True,
},
Expand Down