From 2b747277835f5c746caa2e45e6224176a8783c5c Mon Sep 17 00:00:00 2001 From: Homer McMillan Date: Sat, 2 Feb 2019 22:41:34 -0500 Subject: [PATCH] Fix broken test --- tests/snippets/list.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/snippets/list.py b/tests/snippets/list.py index 52dd60f0c..abb31be3d 100644 --- a/tests/snippets/list.py +++ b/tests/snippets/list.py @@ -21,10 +21,10 @@ except ValueError: else: assert False, "ValueError was not raised" -x = [[1,2,3], 'a', 1] -y = [[3,1,1], 'z', 2] +x = [[1,0,-3], 'a', 1] +y = [[3,2,1], 'z', 2] assert x < y, "list __lt__ failed" -x = [5, -3, 1] +x = [5, 13, 31] y = [1, 10, 29] -assert x > y, "list __gt__ failed" \ No newline at end of file +assert x > y, "list __gt__ failed"