bin/tork-runner in tork-19.7.0 vs bin/tork-runner in tork-19.8.0

- old
+ new

@@ -1,9 +1,9 @@ #!/usr/bin/env ruby =begin ======================================================================= -# TORK-RUNNER 1 2014-03-04 19.7.0 +# TORK-RUNNER 1 2014-06-23 19.8.0 ## NAME tork-runner - runs tests once, non-interactively @@ -75,10 +75,10 @@ driver.puts JSON.dump(command) # track test runs & exit when finished tested, passed, failed = 0, 0, [] while line = driver.gets - response = JSON.load(line) + response = JSON.parse(line) case response.first.to_sym when :test then tested += 1 when :pass then passed += 1 when :fail then failed << response[3] when :idle then