aboutsummaryrefslogtreecommitdiff
path: root/test/bytes.tm
diff options
context:
space:
mode:
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()