mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 06:38:47 +00:00
correct newly found vets
This commit is contained in:
@@ -32,7 +32,7 @@ map_insert_random_key_value :: proc(t: ^testing.T) {
|
||||
}
|
||||
|
||||
key_count := 0
|
||||
for k in m {
|
||||
for _ in m {
|
||||
key_count += 1
|
||||
}
|
||||
|
||||
@@ -82,7 +82,7 @@ map_update_random_key_value :: proc(t: ^testing.T) {
|
||||
}
|
||||
|
||||
key_count := 0
|
||||
for k in m {
|
||||
for _ in m {
|
||||
key_count += 1
|
||||
}
|
||||
|
||||
@@ -144,7 +144,7 @@ map_delete_random_key_value :: proc(t: ^testing.T) {
|
||||
}
|
||||
|
||||
key_count := 0
|
||||
for k in m {
|
||||
for _ in m {
|
||||
key_count += 1
|
||||
}
|
||||
|
||||
@@ -220,7 +220,7 @@ set_insert_random_key_value :: proc(t: ^testing.T) {
|
||||
}
|
||||
|
||||
key_count := 0
|
||||
for k in m {
|
||||
for _ in m {
|
||||
key_count += 1
|
||||
}
|
||||
|
||||
@@ -268,7 +268,7 @@ set_delete_random_key_value :: proc(t: ^testing.T) {
|
||||
}
|
||||
|
||||
key_count := 0
|
||||
for k in m {
|
||||
for _ in m {
|
||||
key_count += 1
|
||||
}
|
||||
|
||||
@@ -379,4 +379,4 @@ when ODIN_TEST {
|
||||
fmt.printf("[%v] ", loc)
|
||||
fmt.printf("log: %v\n", v)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user