fix: missed import OrderedDict

This commit is contained in:
debugtalk
2019-10-26 00:14:02 +08:00
parent 5339786245
commit 1e33ae54e4

View File

@@ -1,11 +1,10 @@
# encoding: utf-8
import re
from collections import OrderedDict
import jsonpath
from httprunner import exceptions, logger, utils
from httprunner.compat import OrderedDict, basestring, is_py2
from httprunner.compat import basestring, is_py2
text_extractor_regexp_compile = re.compile(r".*\(.*\).*")