diff --git a/.gitignore b/.gitignore index e9a4301..bb7aca5 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,9 @@ nimblecache/ # Binaries (compiled test executables) tests/test_all tests/stress_test +tests/test_lock +tests/test_minimal +tests/tla_faithfulness benchmarks/bench_all benchmarks/compare clients/nim/tests/test_client diff --git a/tests/test_minimal.nim b/tests/test_minimal.nim index 3e74cbd..783f958 100644 --- a/tests/test_minimal.nim +++ b/tests/test_minimal.nim @@ -3,5 +3,5 @@ import barabadb/core/types suite "Minimal": test "Value creation": - let v = Value(kind: vkInt, intVal: 42) - check v.intVal == 42 + let v = Value(kind: vkInt64, int64Val: 42) + check v.int64Val == 42 diff --git a/tests/tla_faithfulness b/tests/tla_faithfulness deleted file mode 100755 index 6f48b67..0000000 Binary files a/tests/tla_faithfulness and /dev/null differ