summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spec/support/matchers.rb3
-rw-r--r--spec/support/the_bundle.rb2
2 files changed, 3 insertions, 2 deletions
diff --git a/spec/support/matchers.rb b/spec/support/matchers.rb
index d8e8c5cc4b..69d3be4a3d 100644
--- a/spec/support/matchers.rb
+++ b/spec/support/matchers.rb
@@ -1,7 +1,8 @@
# frozen_string_literal: true
require "forwardable"
-require "support/the_bundle"
+require_relative "the_bundle"
+
module Spec
module Matchers
extend RSpec::Matchers
diff --git a/spec/support/the_bundle.rb b/spec/support/the_bundle.rb
index aa6bff7532..f252a4515b 100644
--- a/spec/support/the_bundle.rb
+++ b/spec/support/the_bundle.rb
@@ -1,6 +1,6 @@
# frozen_string_literal: true
-require "support/path"
+require_relative "path"
module Spec
class TheBundle