Application Context Implementation #4

Closed
kayomn wants to merge 93 commits from event-loop-dev into main
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 1997c38e97 - Show all commits

View File

@ -207,8 +207,8 @@ test "Hashed table manipulation with string context" {
const foo = @as(u32, 69); const foo = @as(u32, 69);
testing.expectEqual(table.remove("foo"), null); try testing.expectEqual(table.remove("foo"), null);
try table.insert("foo", foo); try table.insert("foo", foo);
testing.expectEqual(table.remove("foo"), foo); try testing.expectEqual(table.remove("foo"), foo);
testing.expectEqual(table.remove("foo"), null); try testing.expectEqual(table.remove("foo"), null);
} }