Skip to content

Commit 0dd0bc9

Browse files
committed
renamed e2 to MWS in service
1 parent a21b815 commit 0dd0bc9

8 files changed

+8
-8
lines changed

client/service/mws_credentials.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ type MWSCredentialsAPI struct {
1212
Client *DBApiClient
1313
}
1414

15-
// Create creates a set of E2 Credentials for the cross account role
15+
// Create creates a set of MWS Credentials for the cross account role
1616
func (a MWSCredentialsAPI) Create(mwsAcctId, credentialsName string, roleArn string) (model.MWSCredentials, error) {
1717
var mwsCreds model.MWSCredentials
1818

client/service/mws_credentials_integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"testing"
77
)
88

9-
func TestE2Creds(t *testing.T) {
9+
func TestMWSCreds(t *testing.T) {
1010
if testing.Short() {
1111
t.Skip("skipping integration test in short mode.")
1212
}

client/service/mws_customer_managed_keys.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ type MWSCustomerManagedKeysAPI struct {
1313
Client *DBApiClient
1414
}
1515

16-
// Create creates a set of E2 CustomerManagedKeys for the BYOVPC
16+
// Create creates a set of MWS CustomerManagedKeys for the BYOVPC
1717
func (a MWSCustomerManagedKeysAPI) Create(mwsAcctId, keyArn, keyAlias, keyRegion string) (model.MWSCustomerManagedKey, error) {
1818
var mwsCustomerManagedKey model.MWSCustomerManagedKey
1919

client/service/mws_customer_managed_keys_integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"testing"
77
)
88

9-
func TestE2CustomerManagedKeys(t *testing.T) {
9+
func TestMWSCustomerManagedKeys(t *testing.T) {
1010
if testing.Short() {
1111
t.Skip("skipping integration test in short mode.")
1212
}

client/service/mws_networks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ type MWSNetworksAPI struct {
1212
Client *DBApiClient
1313
}
1414

15-
// Create creates a set of E2 Networks for the BYOVPC
15+
// Create creates a set of MWS Networks for the BYOVPC
1616
func (a MWSNetworksAPI) Create(mwsAcctId, networkName string, VPCID string, subnetIds []string, securityGroupIds []string) (model.MWSNetwork, error) {
1717
var mwsNetwork model.MWSNetwork
1818
networksAPIPath := fmt.Sprintf("/accounts/%s/networks", mwsAcctId)

client/service/mws_networks_integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"testing"
77
)
88

9-
func TestE2Networks(t *testing.T) {
9+
func TestMWSNetworks(t *testing.T) {
1010
if testing.Short() {
1111
t.Skip("skipping integration test in short mode.")
1212
}

client/service/mws_storage_configurations_integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"testing"
77
)
88

9-
func TestE2StorageConfigurations(t *testing.T) {
9+
func TestMWSStorageConfigurations(t *testing.T) {
1010
if testing.Short() {
1111
t.Skip("skipping integration test in short mode.")
1212
}

client/service/mws_workspaces_integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"testing"
77
)
88

9-
func TestE2Workspace(t *testing.T) {
9+
func TestMWSWorkspace(t *testing.T) {
1010
if testing.Short() {
1111
t.Skip("skipping integration test in short mode.")
1212
}

0 commit comments

Comments
 (0)