From a58604b1729b3039a06190632a4e040c44a4d63c Mon Sep 17 00:00:00 2001 From: Mark Rotteveel Date: Mon, 11 Nov 2024 13:58:22 +0100 Subject: [PATCH] Document possible test failure case --- src/test/org/firebirdsql/jdbc/FBConnectionTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/org/firebirdsql/jdbc/FBConnectionTest.java b/src/test/org/firebirdsql/jdbc/FBConnectionTest.java index 58a20e22e..2439e710b 100644 --- a/src/test/org/firebirdsql/jdbc/FBConnectionTest.java +++ b/src/test/org/firebirdsql/jdbc/FBConnectionTest.java @@ -669,6 +669,8 @@ void invalidValueForWireCrypt() { fbMessageStartsWith(JaybirdErrorCodes.jb_invalidConnectionPropertyValue, "NOT_A_VALID_VALUE", "wireCrypt"))); } + /* When testing NATIVE, this test may fail if fbclient doesn't have the ChaCha plugin, e.g. when using fbclient + installed in %windir%\System32 instead of the Firebird installation directory. */ @Test void expectedWireCryptPluginApplied() throws Exception { assumeThat("Test doesn't work with embedded", GDS_TYPE, not(isEmbeddedType()));