Skip to content
Snippets Groups Projects
Commit 9ef6bd1c authored by Eva Bardou's avatar Eva Bardou
Browse files

Trying to fix CI

parent 2399ea55
No related branches found
No related tags found
1 merge request!67Store created elements in a local SQLite database
Pipeline #78280 failed
......@@ -76,7 +76,7 @@ def test_create_tables():
generated = generated_file.read()
# Skipping one byte (related to SQLite version) differing only in CI
assert expected[:97] == generated[:97] and expected[99:] == generated[99:]
assert expected[:96] == generated[:96] and expected[98:] == generated[98:]
def test_insert_empty_lines():
......@@ -92,7 +92,7 @@ def test_insert_empty_lines():
generated = generated_file.read()
# Skipping one byte (related to SQLite version) differing only in CI
assert expected[:97] == generated[:97] and expected[99:] == generated[99:]
assert expected[:96] == generated[:96] and expected[98:] == generated[98:]
def test_insert_existing_lines():
......@@ -111,7 +111,7 @@ def test_insert_existing_lines():
after = after_file.read()
# Skipping one byte (related to SQLite version) differing only in CI
assert before[:97] == after[:97] and before[99:] == after[99:]
assert before[:96] == after[:96] and before[98:] == after[98:]
def test_insert():
......
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