From 46ccfb165fe83cd864a9c6c72025fc05a8a516f6 Mon Sep 17 00:00:00 2001 From: Ashod Nakashian Date: Sun, 26 Feb 2017 12:05:23 -0500 Subject: [PATCH] nb: testLoad -> testLoadSimple Change-Id: Ief4292f3c7bf8cd6866a83518998d250ebc03355 --- test/httpwstest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/httpwstest.cpp b/test/httpwstest.cpp index c1044ca20..018baaa6d 100644 --- a/test/httpwstest.cpp +++ b/test/httpwstest.cpp @@ -60,7 +60,7 @@ class HTTPWSTest : public CPPUNIT_NS::TestFixture CPPUNIT_TEST(testHandshake); CPPUNIT_TEST(testCloseAfterClose); CPPUNIT_TEST(testConnectNoLoad); // This fails most of the times but occasionally succeeds - CPPUNIT_TEST(testLoad); + CPPUNIT_TEST(testLoadSimple); CPPUNIT_TEST(testLoadTortureODT); CPPUNIT_TEST(testLoadTortureODS); CPPUNIT_TEST(testLoadTortureODP); @@ -113,7 +113,7 @@ class HTTPWSTest : public CPPUNIT_NS::TestFixture void testHandshake(); void testCloseAfterClose(); void testConnectNoLoad(); - void testLoad(); + void testLoadSimple(); void testLoadTortureODT(); void testLoadTortureODS(); void testLoadTortureODP(); @@ -394,7 +394,7 @@ void HTTPWSTest::testConnectNoLoad() assertResponseString(socket1, "status:"); } -void HTTPWSTest::testLoad() +void HTTPWSTest::testLoadSimple() { std::string documentPath, documentURL; getDocumentPathAndURL("hello.odt", documentPath, documentURL);