Skip to content

Commit 7442178

Browse files
authored
ci: fix test. (#714)
1 parent 26dfc55 commit 7442178

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bindings/python/tests/blocking/steps/binding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def _(context):
176176
)
177177
exp = datetime(2024, 4, 16, 12, 34, 56, 789000, tzinfo=tz_expected)
178178
exp_bug = datetime(2024, 4, 16, 18, 34, 56, 789000, tzinfo=tz_expected)
179-
if DB_VERSION >= (1, 2, 840) and os.getenv("BODY_FORMAT") == "json":
179+
if DB_VERSION >= (1, 2, 840) and not os.getenv("BODY_FORMAT") == "arrow":
180180
assert row.values()[0] == exp, f"timestamp_tz: {row.values()[0]} {exp}"
181181
else:
182182
assert row.values()[0] == exp_bug, (

0 commit comments

Comments
 (0)