Skip to content

Commit

Permalink
fix class name
Browse files Browse the repository at this point in the history
  • Loading branch information
emmyoop committed Mar 8, 2023
1 parent c36af21 commit 636909b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/functional/adapter/test_constraints.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"""


class SnowflakeSetup:
class SnowflakeColumnEqualSetup:
@pytest.fixture
def int_type(self):
return "FIXED"
Expand All @@ -46,11 +46,11 @@ def data_types(self, int_type, schema_int_type, string_type):
["""TO_VARIANT(PARSE_JSON('{"key3": "value3", "key4": "value4"}'))""", 'variant', 'VARIANT'],
]

class TestSnowflakeTableConstraintsColumnsEqual(SnowflakeSetup, BaseTableConstraintsColumnsEqual):
class TestSnowflakeTableConstraintsColumnsEqual(SnowflakeColumnEqualSetup, BaseTableConstraintsColumnsEqual):
pass


class TestSnowflakeViewConstraintsColumnsEqual(SnowflakeSetup, BaseViewConstraintsColumnsEqual):
class TestSnowflakeViewConstraintsColumnsEqual(SnowflakeColumnEqualSetup, BaseViewConstraintsColumnsEqual):
pass


Expand Down

0 comments on commit 636909b

Please sign in to comment.