Skip to content

Commit 55426f3

Browse files
committed
Removed // in resource test
1 parent 1af47e4 commit 55426f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/provider/function_resource_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ func TestAccFunctionResource_InsertSource(t *testing.T) {
289289
"function": {
290290
"id": "my-function-id",
291291
"workspaceId": "my-workspace-id",
292-
"displayName": "My test function (my-workspace)", // Segment appends workspace
292+
"displayName": "My test function (my-workspace)",
293293
"description": "My function description",
294294
"logoUrl": "https://segment.com/cool-logo.png",
295295
"code": "// My test code!",
@@ -342,7 +342,7 @@ func TestAccFunctionResource_InsertSource(t *testing.T) {
342342
}
343343
}
344344
}`))
345-
// ── READ (initial + after update) ─────────────────────────────────
345+
346346
case req.URL.Path == "/functions/my-function-id" && req.Method == http.MethodGet:
347347
if updated == 0 {
348348
_, _ = w.Write([]byte(`

0 commit comments

Comments
 (0)