Skip to content

Commit 5c69f8d

Browse files
committed
Correct error message in test case
1 parent 2295b3e commit 5c69f8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/frontends/paddle/tests/read_paddle_model_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,6 @@ TEST(Paddle_Reader_Tests, LoadModelWithPartialOpsInsufficientInputs) {
175175
FAIL() << "Expected load to fail due to insufficient X inputs for partial_sum";
176176
} catch (const std::exception& ex) {
177177
const std::string msg = ex.what();
178-
ASSERT_NE(msg.find("partial ops require exactly 2 inputs in X."), std::string::npos) << msg;
178+
ASSERT_NE(msg.find("partial_ops requires exactly 2 inputs in X."), std::string::npos) << msg;
179179
}
180180
}

0 commit comments

Comments
 (0)