Skip to content

Commit

Permalink
Fix incorrect quoting
Browse files Browse the repository at this point in the history
Test was just returning a string instead of actually exercising the
require.
  • Loading branch information
deivid-rodriguez committed Dec 6, 2021
1 parent 7befe7e commit 62c827d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/rubygems/test_project_sanity.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def test_manifest_is_up_to_date
end

def test_require_rubygems_package
err, status = Open3.capture2e(*ruby_with_rubygems_in_load_path, "--disable-gems", "-e", "'require \"rubygems/package\"'")
err, status = Open3.capture2e(*ruby_with_rubygems_in_load_path, "--disable-gems", "-e", "require \"rubygems/package\"")

assert status.success?, err
end
Expand Down

0 comments on commit 62c827d

Please sign in to comment.