Skip to content

Commit 40e8268

Browse files
committed
Fix DataStaX DBaaS service name in unit test
1 parent c32a490 commit 40e8268

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/src/unit/tests/test_cloud_secure_connect_config.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class CloudSecureConnectionConfigTest : public HttpTest {
130130
writer.Key("username");
131131
writer.String("DataStax");
132132
writer.Key("password");
133-
writer.String("Constellation");
133+
writer.String("Astra");
134134
writer.Key("host");
135135
writer.String(host.c_str());
136136
writer.Key("port");
@@ -175,7 +175,7 @@ TEST_F(CloudSecureConnectionConfigTest, CredsV1) {
175175

176176
EXPECT_TRUE(cloud_config.load(creds_zip_file(), &config));
177177
EXPECT_EQ("DataStax", cloud_config.username());
178-
EXPECT_EQ("Constellation", cloud_config.password());
178+
EXPECT_EQ("Astra", cloud_config.password());
179179
EXPECT_EQ("cloud.datastax.com", cloud_config.host());
180180
EXPECT_EQ(1443, cloud_config.port());
181181
EXPECT_EQ(ca_cert(), cloud_config.ca_cert());
@@ -223,7 +223,7 @@ TEST_F(CloudSecureConnectionConfigTest, InvalidCredsV1ConfigMissingHost) {
223223
writer.Key("username");
224224
writer.String("DataStax");
225225
writer.Key("password");
226-
writer.String("Constellation");
226+
writer.String("Astra");
227227
writer.Key("port");
228228
writer.Int(1443);
229229
writer.EndObject();
@@ -241,7 +241,7 @@ TEST_F(CloudSecureConnectionConfigTest, InvalidCredsV1ConfigMissingPort) {
241241
writer.Key("username");
242242
writer.String("DataStax");
243243
writer.Key("password");
244-
writer.String("Constellation");
244+
writer.String("Astra");
245245
writer.Key("host");
246246
writer.String("cloud.datastax.com");
247247
writer.EndObject();

0 commit comments

Comments
 (0)