diff options
| author | Andy Davidoff <andy+github@disruptek.com> | 2020-02-15 21:50:39 -0500 |
|---|---|---|
| committer | Andy Davidoff <andy+github@disruptek.com> | 2020-02-15 21:50:39 -0500 |
| commit | 04ac178d6839a0fd1f12d63a739e3299fe6cf3b9 (patch) | |
| tree | 6a59a028ffd5d3fe8dd1ba29e22b4c08edb93408 /tests/test_jsonfeed.nim | |
| parent | 30ed0739aa64abdb1dc4372c6618c4c5f35cd992 (diff) | |
| download | feed-nim-04ac178d6839a0fd1f12d63a739e3299fe6cf3b9.tar.gz feed-nim-04ac178d6839a0fd1f12d63a739e3299fe6cf3b9.zip | |
fix names on case-sensitive filesystems
Without this change, I was unable to pass the tests on Linux with
a case-sensitive filesystem.
Diffstat (limited to 'tests/test_jsonfeed.nim')
| -rw-r--r-- | tests/test_jsonfeed.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_jsonfeed.nim b/tests/test_jsonfeed.nim index 55757a0..3bbf95f 100644 --- a/tests/test_jsonfeed.nim +++ b/tests/test_jsonfeed.nim @@ -9,8 +9,8 @@ import unittest import marshal -import feednim -import ../src/feednim/jsonfeed +import FeedNim +import ../src/FeedNim/jsonfeed test "Read Valid JsonFeed": let feed = "./tests/test_jsonfeed.json".loadJsonFeed() |
