tests: fix for 3.7.0

Well, at least it seems the update worked.
This commit is contained in:
torque 2023-11-06 22:30:57 -08:00
parent ff13f5e621
commit 7794532fb4
Signed by: torque
SSH Key Fingerprint: SHA256:nCrXefBNo6EbjNSQhv0nXmEg/VuNq3sMF5b8zETw3Tk

View File

@ -9,8 +9,8 @@ test "version" {
const version = nats.getVersion();
const vernum = nats.getVersionNumber();
try std.testing.expectEqualStrings("3.6.1", version);
try std.testing.expectEqual(@as(u32, 0x03_06_01), vernum);
try std.testing.expectEqualStrings("3.7.0", version);
try std.testing.expectEqual(@as(u32, 0x03_07_00), vernum);
try std.testing.expect(nats.checkCompatibility());
}