Fix offense: seperate every 3 digits with _

This commit is contained in:
David Zhang 2016-07-13 15:32:34 +08:00
parent 218c7039a9
commit 5c6c01793c
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ class TestFilters < JekyllUnitTest
should "convert a String to Integer" do
assert_equal(
142857,
142_857,
@filter.to_integer(@integer_as_string)
)
end