Skip to content

Commit d56a2e9

Browse files
authored
chore: fix integration tests (#4011)
1 parent 34bc774 commit d56a2e9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

AmplifyPlugins/Predictions/Tests/PredictionsHostApp/AWSPredictionsPluginIntegrationTests/IdentifyBasicIntegrationTests.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,11 +225,11 @@ class IdentifyBasicIntegrationTests: AWSPredictionsPluginTestBase {
225225
XCTAssertNotNil(result)
226226
XCTAssertFalse(result.fullText.isEmpty)
227227
XCTAssertFalse(result.words.isEmpty)
228-
XCTAssertEqual(result.words.count, 30)
228+
XCTAssertEqual(result.words.count, 28)
229229
XCTAssertFalse(result.rawLineText.isEmpty)
230-
XCTAssertEqual(result.rawLineText.count, 17)
230+
XCTAssertEqual(result.rawLineText.count, 11)
231231
XCTAssertFalse(result.identifiedLines.isEmpty)
232-
XCTAssertEqual(result.identifiedLines.count, 17)
232+
XCTAssertEqual(result.identifiedLines.count, 11)
233233
XCTAssertFalse(result.keyValues.isEmpty)
234234
XCTAssertEqual(result.keyValues.count, 7)
235235
}

0 commit comments

Comments
 (0)