From: Federico Caselli Date: Tue, 31 Mar 2020 19:13:21 +0000 (+0200) Subject: fix typo on testing.skip_if assertion X-Git-Tag: rel_1_4_0b1~418^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c99f6781d3a0c555561149cada66cb02fe263225;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix typo on testing.skip_if assertion Change-Id: I3f2eeffb0b59971a6025f9ce69250d6421751d16 --- diff --git a/test/sql/test_types.py b/test/sql/test_types.py index 2af8cb3259..fe510dbe2f 100644 --- a/test/sql/test_types.py +++ b/test/sql/test_types.py @@ -3249,7 +3249,7 @@ class LiteralTest(fixtures.TestBase): argnames="value", id_="ia", ) - @testing.skip_if(lambda: testing.requires.datetime_literals) + @testing.skip_if(testing.requires.datetime_literals) def test_render_datetime(self, value): lit = literal(value)