diff options
author | Yusuke Endoh <[email protected]> | 2022-03-08 17:40:02 +0900 |
---|---|---|
committer | Yusuke Endoh <[email protected]> | 2022-03-08 17:40:02 +0900 |
commit | bfc697f1e26f1406c45ec7309ca0d4c0b5ecedd6 (patch) | |
tree | 1424d6e0ac2375888079c142f27434944b02c853 /test/io/console/test_io_console.rb | |
parent | 17e09f033c4d3b786672ba16d2c5d935482a2fad (diff) |
test/io/console/test_io_console.rb: parens needed
Diffstat (limited to 'test/io/console/test_io_console.rb')
-rw-r--r-- | test/io/console/test_io_console.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/io/console/test_io_console.rb b/test/io/console/test_io_console.rb index 67959f9eca..f6e46fe112 100644 --- a/test/io/console/test_io_console.rb +++ b/test/io/console/test_io_console.rb @@ -390,7 +390,7 @@ defined?(PTY) and defined?(IO.console) and TestIO_Console.class_eval do # TestIO_Console#test_intr [/usr/home/chkbuild/chkbuild/tmp/build/20220304T163001Z/ruby/test/io/console/test_io_console.rb:387]: # <"25"> expected but was # <"-e:12:in `p': \e[1mexecution expired (\e[1;4mTimeout::Error\e[m\e[1m)\e[m">. - if cc = ctrl["dsusp"] && /freebsd/ !~ RUBY_PLATFORM + if (cc = ctrl["dsusp"]) && /freebsd/ !~ RUBY_PLATFORM assert_ctrl("#{cc.ord}", cc, r, w) assert_ctrl("#{cc.ord}", cc, r, w) assert_ctrl("#{cc.ord}", cc, r, w) |