From: Nils Philippsen Date: Sun, 24 Jun 2018 15:47:05 +0000 (-0400) Subject: fix TypeReflectionTest for sqlite 3.24 X-Git-Tag: rel_1_3_0b1~157^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=40a5d0a4b006780167976b296984eb9790f3df7f;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix TypeReflectionTest for sqlite 3.24 Fixed issue in test suite where SQLite 3.24 added a new reserved word that conflicted with a usage in TypeReflectionTest. Pull request courtesy Nils Philippsen. Change-Id: I396562cecb5ca774f29e9234845bcc6a399fc5cb Pull-request: https://github.com/zzzeek/sqlalchemy/pull/452 --- diff --git a/doc/build/changelog/unreleased_12/pr452.rst b/doc/build/changelog/unreleased_12/pr452.rst new file mode 100644 index 0000000000..471b203dd0 --- /dev/null +++ b/doc/build/changelog/unreleased_12/pr452.rst @@ -0,0 +1,7 @@ +.. change:: + :tags: bug, sqlite + :versions: 1.3.0b1 + + Fixed issue in test suite where SQLite 3.24 added a new reserved word that + conflicted with a usage in TypeReflectionTest. Pull request courtesy Nils + Philippsen. diff --git a/test/dialect/test_sqlite.py b/test/dialect/test_sqlite.py index 4c462aed1c..d2d563208e 100644 --- a/test/dialect/test_sqlite.py +++ b/test/dialect/test_sqlite.py @@ -1637,7 +1637,7 @@ class TypeReflectionTest(fixtures.TestBase): ("BLOBBER", sqltypes.NullType()), ("DOUBLE PRECISION", sqltypes.REAL()), ("FLOATY", sqltypes.REAL()), - ("NOTHING WE KNOW", sqltypes.NUMERIC()), + ("SOMETHING UNKNOWN", sqltypes.NUMERIC()), ] def _fixture_as_string(self, fixture):