Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gdavison committed Apr 16, 2024
1 parent d4d0d19 commit ad31404
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/service/dms/replication_task_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,7 @@ func TestAccDMSReplicationTask_resourceIdentifier(t *testing.T) {
ctx := acctest.Context(t)
rName := sdkacctest.RandomWithPrefix(acctest.ResourcePrefix)
resourceName := "aws_dms_replication_task.test"
var v dms.ReplicationTask

resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { acctest.PreCheck(ctx, t) },
Expand All @@ -392,7 +393,7 @@ func TestAccDMSReplicationTask_resourceIdentifier(t *testing.T) {
{
Config: testAccReplicationTaskConfig_resourceIdentifier(rName),
Check: resource.ComposeTestCheckFunc(
testAccCheckReplicationTaskExists(ctx, resourceName),
testAccCheckReplicationTaskExists(ctx, resourceName, &v),
resource.TestCheckResourceAttr(resourceName, "resource_identifier", "identifier"),
),
},
Expand Down

0 comments on commit ad31404

Please sign in to comment.