about summary refs log tree commit diff stats
path: root/502test.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-10-12 22:15:06 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-10-12 22:15:06 -0700
commit72d104d1693ee7671ef5a956d0ae93540a792da7 (patch)
tree601fd1a8d67cb48527436e1bae9e486681bee71a /502test.mu
parent132d72d28a63e58ec7f5e6fc955be140ee5844b0 (diff)
downloadmu-72d104d1693ee7671ef5a956d0ae93540a792da7.tar.gz
.
Diffstat (limited to '502test.mu')
-rw-r--r--502test.mu12
1 files changed, 6 insertions, 6 deletions
diff --git a/502test.mu b/502test.mu
index 058e594f..8a5e167e 100644
--- a/502test.mu
+++ b/502test.mu
@@ -4,10 +4,10 @@ fn check-ints-equal _a: int, b: int, msg: (addr array byte) {
   compare a, b
   {
     break-if-!=
-    draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, ".", 3/fg/cyan, 0/bg
+    draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, ".", 3/fg=cyan, 0/bg
     return
   }
-  draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, msg, 3/fg/cyan, 0/bg
+  draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, msg, 3/fg=cyan, 0/bg
   move-cursor-to-left-margin-of-next-line 0/screen
   count-test-failure
 }
@@ -21,10 +21,10 @@ fn check _a: boolean, msg: (addr array byte) {
   compare a, 0/false
   {
     break-if-=
-    draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, ".", 3/fg/cyan, 0/bg
+    draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, ".", 3/fg=cyan, 0/bg
     return
   }
-  draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, msg, 3/fg/cyan, 0/bg
+  draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, msg, 3/fg=cyan, 0/bg
   move-cursor-to-left-margin-of-next-line 0/screen
   count-test-failure
 }
@@ -34,10 +34,10 @@ fn check-not _a: boolean, msg: (addr array byte) {
   compare a, 0/false
   {
     break-if-!=
-    draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, ".", 3/fg/cyan, 0/bg
+    draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, ".", 3/fg=cyan, 0/bg
     return
   }
-  draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, msg, 3/fg/cyan, 0/bg
+  draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, msg, 3/fg=cyan, 0/bg
   move-cursor-to-left-margin-of-next-line 0/screen
   count-test-failure
 }