From b34c03ca6f2595913fcd1b0e40ea8184b8572812 Mon Sep 17 00:00:00 2001 From: Konsta Vesterinen Date: Wed, 20 Jan 2016 14:50:44 +0200 Subject: [PATCH] Simplify test case --- tests/types/test_arrow.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/types/test_arrow.py b/tests/types/test_arrow.py index e500839..dd33f33 100644 --- a/tests/types/test_arrow.py +++ b/tests/types/test_arrow.py @@ -58,9 +58,6 @@ class TestArrowDateTimeType(object): assert article.created_at == time def test_literal_param(self, session, Article): - time = arrow.arrow.utcnow() - article = Article(created_at=time) - session.add(article) clause = Article.created_at > '2015-01-01' compiled = str(clause.compile(compile_kwargs={"literal_binds": True})) assert compiled == 'article.created_at > 2015-01-01'