Skip to content

Commit 644a685

Browse files
authored
Remove an assertion that's flaky on CI (#992)
1 parent 6700cda commit 644a685

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

native/swift/Tests/integration-tests/MediaTests.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ struct MediaTests {
1414
)
1515
#expect(response.data.mimeType == "image/jpeg")
1616
#expect(response.data.title.raw == "Image")
17-
#expect(response.data.altText == "This is a test image")
17+
// It appears this particular assertion is flaky on CI, and only on Linux containers.
18+
// Here is an example: https://buildkite.com/automattic/wordpress-rs/builds/4003
19+
// #expect(response.data.altText == "This is a test image")
1820

1921
try await restoreTestServer()
2022
}

0 commit comments

Comments
 (0)