Skip to content

Commit b5f46a0

Browse files
committed
fix failing test in new versions of the bundler
In bundler 2.4.6 a change was made to reset the bundler environment. We think previously the gemspec wasn't being loaded but since it was already in the environment it didn't matter.
1 parent 1858e41 commit b5f46a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/launchdarkly-server-sdk_spec_autoloadtest.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
require "bundler/setup"
21
require "bundler/inline"
32

43
gemfile do
5-
gem "launchdarkly-server-sdk", path: "."
4+
# Inline gemfiles don't appear to load the gemspec so we are loading it explicitly
5+
gemspec
66
end
77

88
Bundler.require(:development)

0 commit comments

Comments
 (0)