We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c08b962 commit 3d6ff40Copy full SHA for 3d6ff40
integration-test/src/test/java/org/apache/iotdb/pipe/it/dual/treemodel/manual/IoTDBPipePermissionIT.java
@@ -270,9 +270,8 @@ public void testSourcePermission() {
270
receiverEnv.getDataNodeWrapperList().get(0).getIpAndPortString()));
271
fail("Shall fail if password is wrong.");
272
} catch (final SQLException e) {
273
- Assert.assertEquals(
274
- "1107: ProcedureId 97: Fail to CREATE_PIPE because Authentication failed.",
275
- e.getMessage());
+ Assert.assertTrue(
+ e.getMessage().contains("Fail to CREATE_PIPE because Authentication failed."));
276
}
277
278
// Use current session, user is root
0 commit comments