summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2017-08-10 10:37:30 +0300
committerSteve Kemp <steve@steve.org.uk>2017-08-10 10:37:30 +0300
commiteed000fd716a61e71e63caf3a84d1ee327f8dc07 (patch)
tree0713a3c9ed692128694eb1e1421213996e599fce
parent8123404af68b22140085dd38f862b0b2d5baf554 (diff)
Revert rubocop change.
Rubocop converted `00` -> `0o0`, we'll just use `0`.
-rwxr-xr-xt/test-custodian-util-timespan.rb2
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