summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-04-20 23:32:03 -0600
committermo khan <mo.khan@gmail.com>2020-04-20 23:32:03 -0600
commit8abda97740b1e4329449c5a93473151d48da2594 (patch)
tree2e602483786c704bb5adf53303f506939654e11a
parente35fd163bbdbb282d37338bf65bfb7064c0349f9 (diff)
Fix path to fixture file
-rw-r--r--spec/support/fixture_file_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/fixture_file_helper.rb b/spec/support/fixture_file_helper.rb
index 6905f02..c7cd3de 100644
--- a/spec/support/fixture_file_helper.rb
+++ b/spec/support/fixture_file_helper.rb
@@ -11,6 +11,6 @@ module FixtureFileHelper
end
def fixture_file(path)
- License::Management.root.join("spec/fixtures/#{path}")
+ File.expand_path("spec/fixtures/#{path}")
end
end