fix(tests): correct vkInt -> vkInt64 in test_minimal, remove tracked binary from git
CI / test (push) Has been cancelled
CI / verify (push) Has been cancelled

This commit is contained in:
2026-05-16 03:13:19 +03:00
parent 9756d93cb8
commit 3fce374aba
3 changed files with 5 additions and 2 deletions
+3
View File
@@ -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
+2 -2
View File
@@ -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
Binary file not shown.