Skip to content

Commit

Permalink
Fix rubocop issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ahangarha committed Sep 24, 2023
1 parent ab98b52 commit 4f49f0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/react/server_rendering/manifest_container_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def teardown
def test_find_asset_gets_asset_contents
application_js_content = @manifest_container.find_asset("application.js")

assert(application_js_content.length > 50_000, "It's the compiled file")
assert_operator(application_js_content.length, :>, 50_000, "It's the compiled file")
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def teardown
def test_find_asset_gets_asset_contents
application_js_content = @manifest_container.find_asset("application.js")

assert(application_js_content.length > 50_000, "It's the compiled file")
assert_operator(application_js_content.length, :>, 50_000, "It's the compiled file")
end
end
end

0 comments on commit 4f49f0f

Please sign in to comment.