diff --git a/.changes/unreleased/Fixes-20230821-180758.yaml b/.changes/unreleased/Fixes-20230821-180758.yaml new file mode 100644 index 000000000..01d042a2b --- /dev/null +++ b/.changes/unreleased/Fixes-20230821-180758.yaml @@ -0,0 +1,6 @@ +kind: Fixes +body: changes expected value types to AnyInteger to take into account changes in core +time: 2023-08-21T18:07:58.746741-05:00 +custom: + Author: McKnight-42 + Issue: "889" diff --git a/tests/functional/adapter/expected_stats.py b/tests/functional/adapter/expected_stats.py index f4a1e022d..560d8de73 100644 --- a/tests/functional/adapter/expected_stats.py +++ b/tests/functional/adapter/expected_stats.py @@ -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): @@ -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, },