1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

Feature #192: Tests fixed for commit f1ef57e0b53cf5fdf5f9e79f67e828db7c433f2b, and testing DB name changed for consistency.

This commit is contained in:
Carlos Martín 2010-09-23 15:50:52 +02:00 committed by Ruben S. Montero
parent fd8b1db099
commit f17ee423ff
2 changed files with 8 additions and 8 deletions

View File

@ -66,7 +66,7 @@ public:
void setUp()
{
string db_name = "testdb";
string db_name = "ONE_test_database";
if (mysql)
{

View File

@ -64,13 +64,13 @@ public:
"</REQUIREMENTS></TEMPLATE>";
test_ok_str=
"\n\tCPU=4"
"\n\tDISK=EXTRA=disk attribute ,FILE=path1"
"\n\tDISK=EXTRA=str,FILE=path2,TYPE=disk"
"\n\tEMPTY_VAR="
"\n\tGRAPHICS=PORT=12,VNC=127.0.0.1"
"\n\tMEMORY=345"
"\n\tREQUIREMENTS=HOSTNAME = \"host*.com\"";
"CPU=4\n"
"DISK=EXTRA=disk attribute ,FILE=path1\n"
"DISK=EXTRA=str,FILE=path2,TYPE=disk\n"
"EMPTY_VAR=\n"
"GRAPHICS=PORT=12,VNC=127.0.0.1\n"
"MEMORY=345\n"
"REQUIREMENTS=HOSTNAME = \"host*.com\"\n";
}
~TemplateTest(){};