Skip to content

Commit

Permalink
Fix relative path loading tests.
Browse files Browse the repository at this point in the history
Use correct parent directory name and case.
  • Loading branch information
philr committed Jul 19, 2022
1 parent 9905ca9 commit 9d49bf9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/tc_ruby_data_source.rb
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def test_load_timezone_info_does_not_exist

def test_load_timezone_info_invalid
assert_raises(InvalidTimezoneIdentifier) do
@data_source.load_timezone_info('../Definitions/UTC')
@data_source.load_timezone_info('../definitions/UTC')
end
end

Expand Down
2 changes: 1 addition & 1 deletion test/tc_zoneinfo_data_source.rb
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def test_load_timezone_info_does_not_exist

def test_load_timezone_info_invalid
assert_raises(InvalidTimezoneIdentifier) do
@data_source.load_timezone_info('../Definitions/Europe/London')
@data_source.load_timezone_info('../zoneinfo/Europe/London')
end
end

Expand Down

0 comments on commit 9d49bf9

Please sign in to comment.