Skip to content
Snippets Groups Projects
Commit 515c652b authored by Matt Bovel's avatar Matt Bovel
Browse files

Fix order

parent 925e73bf
No related branches found
No related tags found
No related merge requests found
...@@ -44,8 +44,8 @@ And the following test: ...@@ -44,8 +44,8 @@ And the following test:
try try
val memory = system.actorOf(Props(Memory())) val memory = system.actorOf(Props(Memory()))
val client = system.actorOf(Props(Client(memory))) val client = system.actorOf(Props(Client(memory)))
memory ! Write(1)
memory ! Read(client) memory ! Read(client)
memory ! Write(1)
finally system.terminate() finally system.terminate()
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment