Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
benc-db committed Oct 27, 2023
1 parent 315e51b commit 2d7bff7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tests/functional/adapter/copy_into/fixtures.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
expected_target_with_expression_list = """id,name,date
expected_target_expression_list = """id,name,date
0,Zero,2022-01-01
1,Alice,null
2,Bob,null
Expand Down Expand Up @@ -39,7 +39,7 @@
id: int
name: string
date: string
- name: expected_target_with_expression_list
- name: expected_target_expression_list
config:
column_types:
id: int
Expand Down
6 changes: 2 additions & 4 deletions tests/functional/adapter/copy_into/test_copy_into.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def seeds(self):
return {
"source.csv": fixtures.source,
"expected_target.csv": fixtures.expected_target,
"expected_target_with_expression_list.csv": fixtures.expected_target_with_expression_list,
"expected_target_expression_list.csv": fixtures.expected_target_expression_list,
"seed_schema.yml": fixtures.seed_schema,
}

Expand Down Expand Up @@ -78,6 +78,4 @@ class TestCopyIntoWithExpressionList(BaseCopyInto):

def test_copy_into_with_expression_list(self, project, path):
self.copy_into(path, self.args_formatter)
util.check_relations_equal(
project.adapter, ["target", "expected_target_with_expression_list"]
)
util.check_relations_equal(project.adapter, ["target", "expected_target_expression_list"])

0 comments on commit 2d7bff7

Please sign in to comment.