Minor patch (TravisCI related)

This commit is contained in:
Miroslav Stampar
2020-05-27 15:44:44 +02:00
parent 03dfd6b4d5
commit 9c503873ad
2 changed files with 2 additions and 2 deletions

View File

@@ -3275,7 +3275,7 @@ def parseSqliteTableSchema(value):
Parses table column names and types from specified SQLite table schema
>>> kb.data.cachedColumns = {}
>>> parseSqliteTableSchema("CREATE TABLE users\\n\\t\\tid INTEGER\\n\\t\\tname TEXT\\n);")
>>> parseSqliteTableSchema("CREATE TABLE users(\\n\\t\\tid INTEGER,\\n\\t\\tname TEXT\\n);")
True
>>> repr(kb.data.cachedColumns).count(',') == 1
True