Skip to content

Commit

Permalink
fix typo in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Schott committed Nov 23, 2020
1 parent 2b1f941 commit 7267a8d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_emitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ def test_create():
)
def test_create_wrong_encoding():
start_watching()
open(p('a_\udce4'), 'a_\udce4').close()
bytes_path = 'a_\udce4'
open(p('a_\udce4'), 'a').close()

event = event_queue.get(timeout=5)[0]
assert event.src_path == p('a_\udce4')
Expand Down

0 comments on commit 7267a8d

Please sign in to comment.