@@ -50,7 +50,7 @@ TEST_F(BeginCommandTest, hostOnly) {
50
50
ExpectOutput (" +OK" );
51
51
52
52
BeginCommand command;
53
- ASSERT_TRUE (command.execute (" BEGIN " , &in_, &out_));
53
+ ASSERT_TRUE (command.execute (" BEGIN_DB " , &in_, &out_));
54
54
55
55
std::unique_ptr<Firebase>firebase (command.firebase ());
56
56
EXPECT_EQ (" " , firebase->auth ());
@@ -64,7 +64,7 @@ TEST_F(BeginCommandTest, hostAndAuth) {
64
64
ExpectOutput (" +OK" );
65
65
66
66
BeginCommand command;
67
- ASSERT_TRUE (command.execute (" BEGIN " , &in_, &out_));
67
+ ASSERT_TRUE (command.execute (" BEGIN_DB " , &in_, &out_));
68
68
69
69
std::unique_ptr<Firebase>firebase (command.firebase ());
70
70
EXPECT_EQ (auth, firebase->auth ());
@@ -75,7 +75,7 @@ TEST_F(BeginCommandTest, neitherHostNorAuth) {
75
75
ExpectOutputStartsWith (" -FAIL" );
76
76
77
77
BeginCommand command;
78
- ASSERT_FALSE (command.execute (" BEGIN " , &in_, &out_));
78
+ ASSERT_FALSE (command.execute (" BEGIN_DB " , &in_, &out_));
79
79
80
80
std::unique_ptr<Firebase>firebase (command.firebase ());
81
81
EXPECT_FALSE (firebase);