File: no-crate.patch

package info (click to toggle)
python-agate-sql 0.5.8-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 208 kB
  • sloc: python: 491; makefile: 123
file content (19 lines) | stat: -rw-r--r-- 694 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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(-)

--- a/tests/test_agatesql.py
+++ b/tests/test_agatesql.py
@@ -169,7 +169,7 @@
         self.assertEqual(statement.replace('\t', '  '), dedent(expected))
 
     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):