summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorptmcg <ptmcg@austin.rr.com>2021-09-02 13:31:34 -0500
committerptmcg <ptmcg@austin.rr.com>2021-09-02 13:31:34 -0500
commit2753016857ac796bfda053f7965cf121a85fe932 (patch)
tree42e491fe9a12ecd71c6047bb89e601249c6a93dc /tests
parentec59ea1343b04d48b76fd96bb7468171fa149a81 (diff)
downloadpyparsing-git-2753016857ac796bfda053f7965cf121a85fe932.tar.gz
Fix test issue; update version time
Diffstat (limited to 'tests')
-rw-r--r--tests/test_simple_unit.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/test_simple_unit.py b/tests/test_simple_unit.py
index 849e9f9..6d06b34 100644
--- a/tests/test_simple_unit.py
+++ b/tests/test_simple_unit.py
@@ -422,7 +422,8 @@ class TestParseAction(PyparsingExpressionTestCase):
class TestResultsModifyingParseAction(PyparsingExpressionTestCase):
- @staticmethod
+ # do not make staticmethod
+ # @staticmethod
def compute_stats_parse_action(t):
# by the time this parse action is called, parsed numeric words
# have been converted to ints by a previous parse action, so
@@ -487,7 +488,8 @@ class TestTransformStringUsingParseActions(PyparsingExpressionTestCase):
"/": "I",
}
- @staticmethod
+ # do not make staticmethod
+ # @staticmethod
def markup_convert(t):
htmltag = TestTransformStringUsingParseActions.markup_convert_map[
t.markup_symbol