We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcf7028 commit dd2af63Copy full SHA for dd2af63
spec/octocatalog-diff/tests/util/parallel_spec.rb
@@ -343,8 +343,8 @@ def two(arg, _logger = nil)
343
expect(two_result.exception).to eq(nil)
344
expect(two_result.output).to match(/^two def \d+$/)
345
346
- one_time = Regexp.last_match(1).to_i if one_result.output =~ /(\d+)$/
347
- two_time = Regexp.last_match(1).to_i if two_result.output =~ /(\d+)$/
+ one_time = Regexp.last_match(1).to_i if one_result.output =~ /(\d+{1,1000})$/
+ two_time = Regexp.last_match(1).to_i if two_result.output =~ /(\d+{1,1000})$/
348
expect(one_time).to be < two_time
349
end
350
0 commit comments