aboutsummaryrefslogtreecommitdiff
path: root/test/paths.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-11-19 13:41:52 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-11-19 13:41:52 -0500
commit2c904ff1737e34008f7a6c5d4b072d87a45a3fbc (patch)
treeac4c430677042a7ea92b92be5e5afa6e5a4ef27d /test/paths.tm
parent4720ca7a5f3ad4bf2a04a6d28d671f03162149a9 (diff)
Go back to stringifying integers/num32s/bytes without the type
constructor.
Diffstat (limited to 'test/paths.tm')
-rw-r--r--test/paths.tm2
1 files changed, 1 insertions, 1 deletions
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