summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorptmcg <ptmcg@austin.rr.com>2021-09-19 15:40:12 -0500
committerptmcg <ptmcg@austin.rr.com>2021-09-19 15:40:12 -0500
commitc10e862ea706ab34e5397e4a1c08c62c09166bf8 (patch)
tree36c99322dcd04471ebda3256bed48008a39aee45 /tests
parent5823e72eff89ee13e561bafeed143377ee98dba0 (diff)
downloadpyparsing-git-c10e862ea706ab34e5397e4a1c08c62c09166bf8.tar.gz
Update version timestamp, blackening
Diffstat (limited to 'tests')
-rw-r--r--tests/test_unit.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/test_unit.py b/tests/test_unit.py
index c693550..a270939 100644
--- a/tests/test_unit.py
+++ b/tests/test_unit.py
@@ -5944,9 +5944,7 @@ class Test02_WithoutPackrat(ppt.TestParseResultsAsserts, TestCase):
# addresses Issue #251
test = pp.MatchFirst(
- (
- pp.pyparsing_common.integer - pp.pyparsing_common.identifier
- )
+ (pp.pyparsing_common.integer - pp.pyparsing_common.identifier)
| pp.pyparsing_common.integer
)