Skip to content

Commit 9cd1f44

Browse files
committed
Fix test case - search was not specific enough (first instead of last)
1 parent 4953ba2 commit 9cd1f44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

restapi/datasource_api_object_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ func TestAccRestapiobject_Basic(t *testing.T) {
8080
Config: fmt.Sprintf(`
8181
data "restapi_object" "Foo" {
8282
path = "/api/objects"
83-
search_key = "first"
84-
search_value = "Foo"
83+
search_key = "last"
84+
search_value = "Bar"
8585
debug = %t
8686
}
8787
`, debug),

0 commit comments

Comments
 (0)