From d9b4f647d88f194779c240cd59d86304bfd8c0f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C5=8Dshin?= Date: Mon, 10 Jun 2024 21:51:19 -0700 Subject: [PATCH] Uncomment swap test (#1210) --- test/ctl/string_test.cc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/ctl/string_test.cc b/test/ctl/string_test.cc index 311b86c83..e43f673a0 100644 --- a/test/ctl/string_test.cc +++ b/test/ctl/string_test.cc @@ -260,13 +260,13 @@ main() return 55; } - // { - // String s = "hello"; - // String s2 = "world"; - // s.swap(s2); - // if (s != "world" || s2 != "hello") - // return 56; - // } + { + String s = "hello"; + String s2 = "world"; + s.swap(s2); + if (s != "world" || s2 != "hello") + return 56; + } { String s = "hello";