File: no-crate.patch

package info (click to toggle)
python-agate-sql 0.5.5-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 236 kB
  • sloc: python: 461; makefile: 123
file content (21 lines) | stat: -rw-r--r-- 762 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Debian Python Team <team+python@tracker.debian.org>
Date: Mon, 11 Jan 2021 15:02:59 +0100
Subject: no-crate

---
 tests/test_agatesql.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/test_agatesql.py b/tests/test_agatesql.py
index adf7311..9fcb3ba 100644
--- a/tests/test_agatesql.py
+++ b/tests/test_agatesql.py
@@ -149,7 +149,7 @@ class TestSQL(agate.AgateTestCase):
 );''')  # noqa
 
     def test_to_sql_create_statement_with_dialects(self):
-        for dialect in ['crate', 'mssql', 'mysql', 'postgresql', 'sqlite']:
+        for dialect in ['mssql', 'mysql', 'postgresql', 'sqlite']:
             self.table.to_sql_create_statement('test_table', dialect=dialect)
 
     def test_to_sql_create_statement_zero_width(self):