Use empty password for root user on Travis.

Signed-off-by: FrancisANDRE <zosrothko@orange.fr>
This commit is contained in:
FrancisANDRE
2016-03-08 10:55:14 +01:00
parent 660cae629b
commit ec168cad6f
4 changed files with 14 additions and 2 deletions

View File

@@ -63,6 +63,8 @@ std::string MySQLTest::getPass()
{
if (Environment::has("APPVEYOR"))
return "Password12!";
else if (Environment::has("TRAVIS"))
return "";
else
return "poco";
}

View File

@@ -9,7 +9,6 @@
// SPDX-License-Identifier: BSL-1.0
//
#include "CppUnit/TestCase.h"
#include "SQLExecutor.h"
#include "Poco/NumberParser.h"