From 2c904ff1737e34008f7a6c5d4b072d87a45a3fbc Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 19 Nov 2024 13:41:52 -0500 Subject: Go back to stringifying integers/num32s/bytes without the type constructor. --- test/paths.tm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/paths.tm') diff --git a/test/paths.tm b/test/paths.tm index 6c1ee5f2..5e901453 100644 --- a/test/paths.tm +++ b/test/paths.tm @@ -25,7 +25,7 @@ func main(): >> tmpfile:read() = "Hello world!"? >> tmpfile:read_bytes() - = [Byte(0x48), Byte(0x65), Byte(0x6C), Byte(0x6C), Byte(0x6F), Byte(0x20), Byte(0x77), Byte(0x6F), Byte(0x72), Byte(0x6C), Byte(0x64), Byte(0x21)]? : [Byte]? + = [0x48, 0x65, 0x6C, 0x6C, 0x6F, 0x20, 0x77, 0x6F, 0x72, 0x6C, 0x64, 0x21]? : [Byte]? >> tmpdir:files():has(tmpfile) = yes -- cgit v1.2.3