From cd9eca7bffa6ab2a1c1e927b80e6ac33e0bb3c5c Mon Sep 17 00:00:00 2001 From: rocky Date: Tue, 11 Jun 2019 14:14:45 -0400 Subject: [PATCH] Formatting change slighty --- pytest/test_token.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pytest/test_token.py b/pytest/test_token.py index 89173b60..07252b64 100644 --- a/pytest/test_token.py +++ b/pytest/test_token.py @@ -17,10 +17,7 @@ def test_token(): # Make sure formatting of: LOAD_CONST False. We assume False is the 0th index # of co_consts. t = Token('LOAD_CONST', offset=1, attr=False, pattr=False, has_arg=True) - if PYTHON_VERSION >= 3.0: - expect = ' 1 LOAD_CONST False' - else: - expect = ' 1 LOAD_CONST 0 False' + expect = ' 1 LOAD_CONST False' assert t.format() == expect if __name__ == '__main__':