bugfix: adjust functions location to avoid cross reference

This commit is contained in:
httprunner
2017-09-18 16:01:19 +08:00
parent cb2555291c
commit 8c05afaed5
9 changed files with 251 additions and 243 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
import zmq
import os
from locust import HttpLocust, TaskSet, task
from ate import utils, runner, exception
from ate import testcase, runner, exception
class WebPageTasks(TaskSet):
def on_start(self):
@@ -22,5 +22,5 @@ class WebPageUser(HttpLocust):
min_wait = 1000
max_wait = 5000
testsets = utils.load_testcases_by_path("$TESTCASE_FILE")
testsets = testcase.load_testcases_by_path("$TESTCASE_FILE")
testset = testsets[0]