diff options
author | Steve Kemp <steve@steve.org.uk> | 2017-08-10 10:37:30 +0300 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2017-08-10 10:37:30 +0300 |
commit | eed000fd716a61e71e63caf3a84d1ee327f8dc07 (patch) | |
tree | 0713a3c9ed692128694eb1e1421213996e599fce | |
parent | 8123404af68b22140085dd38f862b0b2d5baf554 (diff) |
Revert rubocop change.
Rubocop converted `00` -> `0o0`, we'll just use `0`.
-rwxr-xr-x | t/test-custodian-util-timespan.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test-custodian-util-timespan.rb b/t/test-custodian-util-timespan.rb index 5098589..7681f26 100755 --- a/t/test-custodian-util-timespan.rb +++ b/t/test-custodian-util-timespan.rb @@ -214,7 +214,7 @@ class TestTimeSpanUtil < Test::Unit::TestCase # def test_wrap_around - for h in 0o0..23 + for h in 0..23 assert_equal(1, Custodian::Util::TimeSpan.to_hours(h, h).size) end |