summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSylvain Thénault <sylvain.thenault@logilab.fr>2009-03-18 09:54:11 +0100
committerSylvain Thénault <sylvain.thenault@logilab.fr>2009-03-18 09:54:11 +0100
commit533220fa3ab0c7e675befbddd0e19bb78e58cf99 (patch)
tree6a3ed2d6e74f16d52f35b03db8ae18d980420cd6 /test
parenteced5a1fa3c33dad9b8d69d76140c117b804c705 (diff)
downloadastroid-git-533220fa3ab0c7e675befbddd0e19bb78e58cf99.tar.gz
oops
--HG-- branch : _ast_compat
Diffstat (limited to 'test')
-rw-r--r--test/unittest_nodes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unittest_nodes.py b/test/unittest_nodes.py
index 67b205ca..6d4135a7 100644
--- a/test/unittest_nodes.py
+++ b/test/unittest_nodes.py
@@ -213,7 +213,7 @@ x = lambda x: None
class SliceNodeTC(testlib.TestCase):
def test(self):
- for code in ('a[0]', 'a[:-1,step]', 'a[:,newaxis]'):
+ for code in ('a[0]', 'a[:-1:step]', 'a[:,newaxis]'):
ast = abuilder.string_build(code)
self.assertEquals(ast.as_string(), code)