Skip to content

Commit c2f32de

Browse files
committed
fixed test paths in development server
1 parent e2441e4 commit c2f32de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/serve

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ class DevelopmentServerRoutes(object):
4545

4646
# get a refreshable handle on our test code
4747
self.__test_javascript_file = RefreshableFile(
48-
path=os.path.join(os.path.dirname(__file__), '..', 'tests', 'test.js'),
48+
path=os.path.join(os.path.dirname(__file__), '..', 'test', 'test.js'),
4949
)
5050
self.__testlib_javascript_file = RefreshableFile(
51-
path=os.path.join(os.path.dirname(__file__), '..', 'tests', 'testlib.js'),
51+
path=os.path.join(os.path.dirname(__file__), '..', 'test', 'testlib.js'),
5252
)
5353

5454
# cache the other Javascript that we'll want to serve quickly

0 commit comments

Comments
 (0)