[ox/std] Fix BString == and != operators

This commit is contained in:
2023-02-12 21:14:16 -06:00
parent 54eebf81da
commit 6d4c57d37d
2 changed files with 19 additions and 5 deletions

View File

@@ -206,7 +206,7 @@ static std::map<ox::String, ox::Error(*)()> tests = {
[] {
constexpr ox::StringView uuidStr = "8d814442-f46e-4cc3-8edc-ca3c01cc86db";
oxRequire(uuid, ox::UUID::fromString(uuidStr));
oxExpect(ox::StringView(uuid.toString()), uuidStr);
oxExpect(uuid.toString(), uuidStr);
return OxError(0);
}
},