From 8f9782ca25474275949a7e72485a36d76ca96ef0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20J=2E=20Iglesias=20Garc=C3=ADa?= Date: Wed, 22 May 2024 10:42:10 +0200 Subject: [PATCH] Update 131.cpp --- leetcode/131.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leetcode/131.cpp b/leetcode/131.cpp index 21dff85..9def284 100644 --- a/leetcode/131.cpp +++ b/leetcode/131.cpp @@ -43,7 +43,7 @@ vector> partition(const string& s) { TEST(PalindromePartitioning, a) { const vector ans{{"a", "a", "b"}, {"aa", "b"}}; - EXPECT_EQ(partition("aab") ans); + EXPECT_EQ(partition("aab"), ans); } TEST(PalindromePartitioning, b) {