@@ -130,7 +130,7 @@ class CloudSecureConnectionConfigTest : public HttpTest {
130
130
writer.Key (" username" );
131
131
writer.String (" DataStax" );
132
132
writer.Key (" password" );
133
- writer.String (" Constellation " );
133
+ writer.String (" Astra " );
134
134
writer.Key (" host" );
135
135
writer.String (host.c_str ());
136
136
writer.Key (" port" );
@@ -175,7 +175,7 @@ TEST_F(CloudSecureConnectionConfigTest, CredsV1) {
175
175
176
176
EXPECT_TRUE (cloud_config.load (creds_zip_file (), &config));
177
177
EXPECT_EQ (" DataStax" , cloud_config.username ());
178
- EXPECT_EQ (" Constellation " , cloud_config.password ());
178
+ EXPECT_EQ (" Astra " , cloud_config.password ());
179
179
EXPECT_EQ (" cloud.datastax.com" , cloud_config.host ());
180
180
EXPECT_EQ (1443 , cloud_config.port ());
181
181
EXPECT_EQ (ca_cert (), cloud_config.ca_cert ());
@@ -223,7 +223,7 @@ TEST_F(CloudSecureConnectionConfigTest, InvalidCredsV1ConfigMissingHost) {
223
223
writer.Key (" username" );
224
224
writer.String (" DataStax" );
225
225
writer.Key (" password" );
226
- writer.String (" Constellation " );
226
+ writer.String (" Astra " );
227
227
writer.Key (" port" );
228
228
writer.Int (1443 );
229
229
writer.EndObject ();
@@ -241,7 +241,7 @@ TEST_F(CloudSecureConnectionConfigTest, InvalidCredsV1ConfigMissingPort) {
241
241
writer.Key (" username" );
242
242
writer.String (" DataStax" );
243
243
writer.Key (" password" );
244
- writer.String (" Constellation " );
244
+ writer.String (" Astra " );
245
245
writer.Key (" host" );
246
246
writer.String (" cloud.datastax.com" );
247
247
writer.EndObject ();
0 commit comments