aboutsummaryrefslogtreecommitdiff
path: root/test/bytes.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-25 15:40:59 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-03-25 15:40:59 -0400
commit1f9147187d66e95a0ffedd4d5595ec98646b5fe1 (patch)
tree14281e5cbde8e15fae63953b72844fb1a11d6f73 /test/bytes.tm
parentd88d8648dc7802fbeac2f28dc5f2ef8fdfe1a9e4 (diff)
Make docstring tests use an actual expression AST instead of text
matching
Diffstat (limited to 'test/bytes.tm')
-rw-r--r--test/bytes.tm4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/bytes.tm b/test/bytes.tm
index f9a872dc..b312c308 100644
--- a/test/bytes.tm
+++ b/test/bytes.tm
@@ -2,10 +2,10 @@
func main():
!! Test bytes:
>> Byte(100)
- = 0x64
+ = Byte(0x64)
>> Byte(0xFF)
- = 0xFF
+ = Byte(0xFF)
>> b := Byte(0x0F)
>> b:hex()