Skip to content

Commit

Permalink
Tests: Rename test.py -> utils.py
Browse files Browse the repository at this point in the history
Starting to prepare for pytest - rename utilities module;
this is required because pytest collects tests from files test*.py.
  • Loading branch information
phdru authored and ljmccarthy committed Jul 4, 2018
1 parent 0390ff6 commit 80de1fc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/test1.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os, time
from test import *
from utils import *
from fsmonitor import *

w = test.add_dir_watch(tempdir)
Expand Down
2 changes: 1 addition & 1 deletion tests/test2.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os, time
from test import *
from utils import *
from fsmonitor import *

w = test.add_dir_watch(tempdir)
Expand Down
2 changes: 1 addition & 1 deletion tests/test3.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os, time, errno
from test import *
from utils import *
from fsmonitor import *

try:
Expand Down
File renamed without changes.

0 comments on commit 80de1fc

Please sign in to comment.