Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
BTheunissen committed Mar 15, 2024
1 parent 02d82a5 commit 8584082
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/target_test_cases.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ def validate(self) -> None:
statement=text("SELECT * FROM date_type"),
).fetchall()
record_id_1 = 1
record_1 = [
record_1 = next(iter([
record for record in result if record[0] == record_id_1
][0]
]))
assert record_1[1] == datetime.date(2024, 3, 15)
record_id_2 = 2
record_2 = [
record_2 = next(iter([
record for record in result if record[0] == record_id_2
][0]
]))
assert record_2[1] == datetime.date(2024, 3, 16)

custom_target_test_suite = TestSuite(
Expand Down

0 comments on commit 8584082

Please sign in to comment.