Skip to content
Snippets Groups Projects
Commit ed5aed88 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

Merge branch 'dev' into table-error

parents 20461ec0 b3c7499f
No related branches found
No related tags found
1 merge request!22Release 0.3
......@@ -140,9 +140,9 @@ class InsertionTest(unittest.TestCase):
int_name = "Test int"
types_and_values = {
int_name: ("INT", 5),
"Test float": ("FLOAT", 3.14),
"Test bool": ("BOOLEAN", True),
"Test string": ("STRING", "bla")
"Test float": (db.DOUBLE, 3.14),
"Test bool": (db.BOOLEAN, True),
"Test string": (db.TEXT, "bla")
}
for name, ty_val in types_and_values.items():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment