From c642e62983c523fb400318092fecd021b57b4353 Mon Sep 17 00:00:00 2001 From: Bryan Chen Date: Wed, 21 Aug 2024 14:56:28 +1200 Subject: [PATCH] fmt --- Codec/Tests/CodecTests/IntegerCodecTests.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Codec/Tests/CodecTests/IntegerCodecTests.swift b/Codec/Tests/CodecTests/IntegerCodecTests.swift index 36d41273..0aacae8c 100644 --- a/Codec/Tests/CodecTests/IntegerCodecTests.swift +++ b/Codec/Tests/CodecTests/IntegerCodecTests.swift @@ -105,8 +105,8 @@ import Testing @Test func multipleDecodes() throws { var data = Data([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]) - #expect(data.decode(length: 8) as UInt64? == 0x0706050403020100) - #expect(data.decode(length: 4) as UInt32? == 0x0B0A0908) + #expect(data.decode(length: 8) as UInt64? == 0x0706_0504_0302_0100) + #expect(data.decode(length: 4) as UInt32? == 0x0B0A_0908) #expect(data.decode(length: 2) as UInt16? == 0x0D0C) #expect(data.decode() == 0x0E) #expect(data.decode() == 0x0F)