From 9abadbd6cd169eb28bd067ebecd0c2a0162ac7b0 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Wed, 21 Oct 2009 21:43:53 +0200 Subject: [PATCH] test fixes --- tests/run/locals_expressions_T430.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/run/locals_expressions_T430.pyx b/tests/run/locals_expressions_T430.pyx index 9bb445b5..f05c5be2 100644 --- a/tests/run/locals_expressions_T430.pyx +++ b/tests/run/locals_expressions_T430.pyx @@ -2,10 +2,10 @@ __doc__ = u""" >>> sorted( get_locals(1,2,3, k=5) .items()) [('args', (2, 3)), ('kwds', {'k': 5}), ('x', 1), ('y', 'hi'), ('z', 5)] ->>> sorted(get_locals_items()) +>>> sorted(get_locals_items(1,2,3, k=5)) [('args', (2, 3)), ('kwds', {'k': 5}), ('x', 1), ('y', 'hi'), ('z', 5)] ->>> sorted(get_locals_items_listcomp()) +>>> sorted(get_locals_items_listcomp(1,2,3, k=5)) [('args', (2, 3)), ('kwds', {'k': 5}), ('x', 1), ('y', 'hi'), ('z', 5)] """ -- 2.26.2