From 149b917dfe95887b1c46cb7bbf45a6ddbe32ca1b Mon Sep 17 00:00:00 2001 From: Jakob Odersky Date: Wed, 26 Dec 2018 18:31:23 +0100 Subject: Update tests for ScalaJS --- shared/src/test/scala/escale/SyntaxTest.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'shared/src/test/scala/escale/SyntaxTest.scala') diff --git a/shared/src/test/scala/escale/SyntaxTest.scala b/shared/src/test/scala/escale/SyntaxTest.scala index fffcbe9..6225839 100644 --- a/shared/src/test/scala/escale/SyntaxTest.scala +++ b/shared/src/test/scala/escale/SyntaxTest.scala @@ -30,8 +30,8 @@ object SyntaxTest extends TestSuite { val Ch1 = chan[Int]() val Ch2 = chan[Int]() - go {/*Thread.sleep(1);*/ Ch1 !< 1} - go {/*Thread.sleep(1);*/ Ch2 !< 1} + go {Thread.sleep(1); Ch1 !< 1} + go {Thread.sleep(1); Ch2 !< 1} select(Ch1, Ch2) match { case (Ch1, _) => "ch1 was first" -- cgit v1.2.3