From f6682fcb82b7d5b9220cfd240003c616d3abbfb3 Mon Sep 17 00:00:00 2001 From: Jeffery Tian <jeff.f.t888@outlook.com> Date: Mon, 12 Oct 2020 17:08:17 -0700 Subject: [PATCH] Fixed the expected and actual --- src/tests/gitlab/ckpt2/AVLTreeTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/gitlab/ckpt2/AVLTreeTests.java b/src/tests/gitlab/ckpt2/AVLTreeTests.java index 46da5a6..ec1d827 100644 --- a/src/tests/gitlab/ckpt2/AVLTreeTests.java +++ b/src/tests/gitlab/ckpt2/AVLTreeTests.java @@ -67,8 +67,8 @@ public class AVLTreeTests { // System.err.println(nestd(root)); // System.err.println(trueData); - assertEquals(nestd(root), trueData); - assertEquals(nestc(root), trueCounts); + assertEquals(trueData, nestd(root)); + assertEquals(trueCounts, nestc(root)); } @SuppressWarnings("rawtypes") -- GitLab