tests: Update test-actors to use msg-recieve instead of =>.
authorChristopher Allan Webber <cwebber@dustycloud.org>
Mon, 12 Dec 2016 15:09:52 +0000 (09:09 -0600)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Mon, 12 Dec 2016 15:09:52 +0000 (09:09 -0600)
It feels like msg-recieve is an easier to read name, and looks less
like a structure used elsewhere (the way => is used in cond).

* tests/test-actors.scm: Update to switch => to msg-recieve.

tests/test-actors.scm

index 0a09adb07bc1d00ac8d5b38482da6874f088fd0c..3fc69c45c9eea8da5692fae14b304058e912d743 100644 (file)
 
 (define* (antsy-caller-pester-rep actor message #:key who-to-call)
   (~display "customer> I'm calling customer service about this!\n")
-  (=> (first-reply #:key msg)
+  (msg-recieve (first-reply #:key msg)
       (<-wait actor who-to-call 'field-call)
     (if (message-auto-reply? first-reply)
         (~display "customer> Whaaaaat?  I can't believe I got voice mail!\n")
         (begin
           (~format "*customer hears*: ~a\n" msg)
-          (=> (second-reply #:key *auto-reply*)
+          (msg-recieve (second-reply #:key *auto-reply*)
               (<-reply-wait actor first-reply
                             #:msg "Yes, it didn't work, I'm VERY ANGRY!")
             (if (message-auto-reply? second-reply)
@@ -97,7 +97,7 @@
 
 (define (rep-field-call actor message)
   (~display "good-rep> Hm, another call from a customer...\n")
-  (=> (reply #:key msg)
+  (msg-recieve (reply #:key msg)
       (<-reply-wait
        actor message
        #:msg "Have you tried turning it off and on?")