Skip to content

Commit

Permalink
fix sql user tests after changing import format (#2742)
Browse files Browse the repository at this point in the history
<!-- This change is generated by MagicModules. -->
/cc @danawillow
  • Loading branch information
modular-magician authored and danawillow committed Dec 22, 2018
1 parent 42ed54a commit 2b2e007
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions google/resource_sql_user_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func TestAccSqlUser_mysql(t *testing.T) {
},
{
ResourceName: "google_sql_user.user2",
ImportStateId: instance + "/gmail.com/admin",
ImportStateId: fmt.Sprintf("%s/%s/gmail.com/admin", getTestProjectFromEnv(), instance),
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{"password"},
Expand Down Expand Up @@ -68,7 +68,7 @@ func TestAccSqlUser_postgres(t *testing.T) {
},
{
ResourceName: "google_sql_user.user",
ImportStateId: instance + "/admin",
ImportStateId: fmt.Sprintf("%s/%s/admin", getTestProjectFromEnv(), instance),
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{"password"},
Expand Down

0 comments on commit 2b2e007

Please sign in to comment.