-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
diff --git a/test/json/test_helper.rb b/test/json/test_helper.rb | ||
index 4955a02c9d..f0e80fce12 100644 | ||
index e8bba16f84..93763fa96f 100644 | ||
--- a/test/json/test_helper.rb | ||
+++ b/test/json/test_helper.rb | ||
@@ -1,12 +1,12 @@ | ||
case ENV['JSON'] | ||
when 'pure' | ||
- $:.unshift File.join(__dir__, '../../lib') | ||
+ # $:.unshift File.join(__dir__, '../../lib') | ||
- $LOAD_PATH.unshift(File.expand_path('../../../lib', __FILE__)) | ||
+ # $LOAD_PATH.unshift(File.expand_path('../../../lib', __FILE__)) | ||
require 'json/pure' | ||
when 'ext' | ||
- $:.unshift File.join(__dir__, '../../ext'), File.join(__dir__, '../../lib') | ||
+ # $:.unshift File.join(__dir__, '../../ext'), File.join(__dir__, '../../lib') | ||
- $LOAD_PATH.unshift(File.expand_path('../../../ext', __FILE__), File.expand_path('../../../lib', __FILE__)) | ||
+ # $LOAD_PATH.unshift(File.expand_path('../../../ext', __FILE__), File.expand_path('../../../lib', __FILE__)) | ||
require 'json/ext' | ||
else | ||
- $:.unshift File.join(__dir__, '../../ext'), File.join(__dir__, '../../lib') | ||
+ # $:.unshift File.join(__dir__, '../../ext'), File.join(__dir__, '../../lib') | ||
- $LOAD_PATH.unshift(File.expand_path('../../../ext', __FILE__), File.expand_path('../../../lib', __FILE__)) | ||
+ # $LOAD_PATH.unshift(File.expand_path('../../../ext', __FILE__), File.expand_path('../../../lib', __FILE__)) | ||
require 'json' | ||
end | ||
|