Skip to content
Snippets Groups Projects
Commit cc90ed02 authored by Eric Cano's avatar Eric Cano
Browse files

Fixed wrong expected value in unit test.

parent a02e95a2
Branches
Tags
No related merge requests found
......@@ -115,7 +115,7 @@ TEST_F(cta_rdbms_LoginTest, parseStream_oracle_password_with_a_hash) {
const Login login = Login::parseStream(inputStream);
ASSERT_EQ(Login::DBTYPE_ORACLE, login.dbType);
ASSERT_EQ(std::string("username"), login.username);
ASSERT_EQ(std::string("password"), login.password);
ASSERT_EQ(std::string("password_with_a_hash#"), login.password);
ASSERT_EQ(std::string("database"), login.database);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment