Skip to content

Commit

Permalink
Fix incorrect path for unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
cogu committed Jul 28, 2023
1 parent 0637743 commit efeaaf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import os
import sys
import unittest
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '../../src')))
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '../src')))
import cfile.core as core # noqa E402
import cfile.style as style # noqa E402
import cfile # noqa E402
Expand Down

0 comments on commit efeaaf6

Please sign in to comment.