fix(tests): correct vkInt -> vkInt64 in test_minimal, remove tracked binary from git
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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.
Reference in New Issue
Block a user