Skip to content

Commit 1c9b089

Browse files
committed
Add content id to error message
1 parent cf9481d commit 1c9b089

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sumologic/resource_sumologic_content_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ func testAccCheckContentDestroy(content Content) resource.TestCheckFunc {
8989
client := testAccProvider.Meta().(*Client)
9090
_, err := client.GetContent(content.ID, time.Minute)
9191
if err == nil {
92-
return fmt.Errorf("Content still exists")
92+
return fmt.Errorf("Content(id=%s) still exists", content.ID)
9393
}
9494
return nil
9595
}

0 commit comments

Comments
 (0)