Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
jtcohen6 committed Jan 18, 2023
1 parent b948ec3 commit 0f65624
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/adapter/dbt/tests/adapter/caching/test_caching.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ class BaseCachingTest:
@pytest.fixture(scope="class")
def project_config_update(self):
return {
'config-version': 2,
'quoting': {
'identifier': False,
'schema': False,
}
"config-version": 2,
"quoting": {
"identifier": False,
"schema": False,
},
}

def run_and_inspect_cache(self, project, run_args=None):
Expand Down Expand Up @@ -58,7 +58,7 @@ def run_and_inspect_cache(self, project, run_args=None):
assert getattr(relation, key).lower() == getattr(second_relation, key).lower()

def test_cache(self, project):
self.run_and_inspect_cache(project, run_args=['run'])
self.run_and_inspect_cache(project, run_args=["run"])


class BaseCachingLowercaseModel(BaseCachingTest):
Expand Down Expand Up @@ -87,7 +87,7 @@ def models(self):

def test_cache(self, project):
# this should only cache the schema containing the selected model
run_args = ['--cache-selected-only', 'run', '--select', 'model']
run_args = ["--cache-selected-only", "run", "--select", "model"]
self.run_and_inspect_cache(project, run_args)


Expand Down

0 comments on commit 0f65624

Please sign in to comment.