aboutsummaryrefslogtreecommitdiff
path: root/test/paths.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-09-21 16:28:57 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-09-21 16:28:57 -0400
commitfd74479a2bf2e4ccc35d1c2fa206de8f28be1e54 (patch)
tree0cdf5c4659264b612b5f3fbb4ce6a3b11dd736f5 /test/paths.tm
parent92185a002a2e8b669add454a945c0ecdc0904993 (diff)
Deprecate optional '?' postfix operator
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 d92d4623..22f79c7b 100644
--- a/test/paths.tm
+++ b/test/paths.tm
@@ -20,7 +20,7 @@ func main()
>> tmpfile.write("Hello world")
>> tmpfile.append("!")
>> tmpfile.read()
- = "Hello world!"?
+ = "Hello world!"
>> tmpfile.read_bytes()!
= [0x48, 0x65, 0x6C, 0x6C, 0x6F, 0x20, 0x77, 0x6F, 0x72, 0x6C, 0x64, 0x21]
assert tmpdir.files().has(tmpfile)