Skip to content

Commit cf992cf

Browse files
committed
Remove incorrect type assertion 'logs.(string)' from runtime logs
1 parent 9915798 commit cf992cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/staticfile/integration/default_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ func testDefault(platform switchblade.Platform, fixtures string) func(*testing.T
9292

9393
Eventually(func() string {
9494
logs, _ := deployment.RuntimeLogs()
95-
return logs.(string)
95+
return logs
9696
}, "10s", "1s").Should(Or(
9797
ContainSubstring("GET / HTTP/1.1"),
9898
ContainSubstring("GET /does-not-exist HTTP/1.1"),

0 commit comments

Comments
 (0)