From 66f49ace41e2e24c3e824f7aef04497ad07885c1 Mon Sep 17 00:00:00 2001 From: VladiMihaylenko Date: Mon, 8 Aug 2016 10:54:22 +0300 Subject: [PATCH] [coding_test] Fixed coding tests. --- coding/coding_tests/uri_test.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/coding/coding_tests/uri_test.cpp b/coding/coding_tests/uri_test.cpp index 9a46296aac..c6676ea112 100644 --- a/coding/coding_tests/uri_test.cpp +++ b/coding/coding_tests/uri_test.cpp @@ -33,12 +33,13 @@ public: private: - void AddTestValue(string const & key, string const & value) + bool AddTestValue(string const & key, string const & value) { TEST(!m_keyValuePairs.empty(), ("Failed for uri = ", m_uri, "Passed KV = ", key, value)); TEST_EQUAL(m_keyValuePairs.front().first, key, ()); TEST_EQUAL(m_keyValuePairs.front().second, value, ()); m_keyValuePairs.pop(); + return true; } string m_uri, m_scheme, m_path;