From 72138118280c3ba44eceb48e03d3f8575f2a3d8e Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 11 May 2024 00:26:57 -0500 Subject: [PATCH] [ox/std] Add missing oxExpect to timeMapStrToUuid (synced from e8041121d02c237e47f7e3da8c8fb63e060c4be6) --- src/ox/std/test/tests.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ox/std/test/tests.cpp b/src/ox/std/test/tests.cpp index 698088143..e0ad71651 100644 --- a/src/ox/std/test/tests.cpp +++ b/src/ox/std/test/tests.cpp @@ -45,6 +45,7 @@ uint64_t timeMapStrToUuid(int elemCnt, int lookups, uint64_t seed = 4321) noexce for (int i = 0; i < lookups; ++i) { auto const&k = keys[rand.gen() % keys.size()]; map[k]; + oxExpect(map[k], ox::UUID::fromString(k).unwrap()); } return nowMs() - startTime; }