diff options
| -rw-r--r-- | Library/Formula/cbmbasic.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/cbmbasic.rb b/Library/Formula/cbmbasic.rb index 591ebb825..7a3b64b23 100644 --- a/Library/Formula/cbmbasic.rb +++ b/Library/Formula/cbmbasic.rb @@ -14,7 +14,7 @@ class Cbmbasic < Formula IO.popen("#{bin}/cbmbasic", "w+") do |pipe| pipe.write("PRINT 1\n") pipe.close_write - /READY.\r\n 1/ === pipe.read + assert_match /READY.\r\n 1/, pipe.read end end end |
