Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanhristovski committed Aug 20, 2024
1 parent e2a3344 commit a48928a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/provider/resource_repository_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func TestRepositoryResource(t *testing.T) {
Config: testRepositoryResourceConfigUpdated(),
Check: resource.ComposeAggregateTestCheckFunc(
resource.TestCheckResourceAttr("dockerhub_repository.test", "description", "Updated example repository"),
resource.TestCheckResourceAttr("dockerhub_repository.test", "full_description", "Test configuration"),
resource.TestCheckResourceAttr("dockerhub_repository.test", "full_description", "Full description update"),
resource.TestCheckResourceAttr("dockerhub_repository.test", "private", "true"),
),
},
Expand Down Expand Up @@ -62,7 +62,7 @@ resource "dockerhub_repository" "test" {
name = "example-repo"
namespace = "` + os.Getenv("DOCKERHUB_USERNAME") + `"
description = "Updated example repository"
full_description = "Test configuration"
full_description = "Full description update"
private = true
}
`
Expand Down

0 comments on commit a48928a

Please sign in to comment.