diff options
| author | mo khan <mo.khan@gmail.com> | 2020-04-20 23:32:03 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-04-20 23:32:03 -0600 |
| commit | 8abda97740b1e4329449c5a93473151d48da2594 (patch) | |
| tree | 2e602483786c704bb5adf53303f506939654e11a | |
| parent | e35fd163bbdbb282d37338bf65bfb7064c0349f9 (diff) | |
Fix path to fixture file
| -rw-r--r-- | spec/support/fixture_file_helper.rb | 2 |
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 |
