Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-rogers-dbt committed Oct 11, 2023
1 parent ad082a3 commit 204f06a
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions tests/functional/adapter/utils/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@
models__array_construct_expected_sql,
macros__array_to_string_sql,
)
from tests.functional.adapter.utils.fixture_get_intervals_between import (
models__bq_test_get_intervals_between_sql,
models___bq_test_get_intervals_between_yml,
)


class TestAnyValue(BaseAnyValue):
Expand Down Expand Up @@ -141,8 +145,15 @@ class TestGenerateSeries(BaseGenerateSeries):
pass


class TestGetIntervalsBeteween(BaseGetIntervalsBetween):
pass
class TestGetIntervalsBetween(BaseGetIntervalsBetween):
@pytest.fixture(scope="class")
def models(self):
return {
"test_get_intervals_between.yml": models___bq_test_get_intervals_between_yml,
"test_get_intervals_between.sql": self.interpolate_macro_namespace(
models__bq_test_get_intervals_between_sql, "get_intervals_between"
),
}


class TestGetPowersOfTwo(BaseGetPowersOfTwo):
Expand Down

0 comments on commit 204f06a

Please sign in to comment.