summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2024-06-27 12:35:44 +0200
committergit <svn-admin@ruby-lang.org>2024-07-02 19:53:54 +0000
commitc36eb10d8bd2218a944120dffb8920fbb3bf4f5d (patch)
tree630ea0821e429d62948e09d4208d00b3029316a8
parent7fc04276ac53f91d857863998d197102b9987f58 (diff)
[rubygems/rubygems] Normalize dummy test server name
https://github.com/rubygems/rubygems/commit/18b38ca6b4
-rw-r--r--spec/bundler/commands/lock_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/bundler/commands/lock_spec.rb b/spec/bundler/commands/lock_spec.rb
index 8fff770e88..3ffe8b90eb 100644
--- a/spec/bundler/commands/lock_spec.rb
+++ b/spec/bundler/commands/lock_spec.rb
@@ -1008,14 +1008,14 @@ RSpec.describe "bundle lock" do
end
gemfile <<-G
- source "https://localgemserver.test"
+ source "https://gem.repo4"
gem "raygun-apm"
G
lockfile <<-L
GEM
- remote: https://localgemserver.test/
+ remote: https://gem.repo4/
specs:
raygun-apm (1.0.78-universal-darwin)
@@ -1029,7 +1029,7 @@ RSpec.describe "bundle lock" do
#{Bundler::VERSION}
L
- bundle "lock --add-platform x86_64-linux", artifice: "compact_index", env: { "BUNDLER_SPEC_GEM_REPO" => gem_repo4.to_s }
+ bundle "lock --add-platform x86_64-linux"
end
it "does not crash on conflicting ruby requirements between platform versions in two different gems" do