From ea2d4935d0174c8cbbbfa40bcc5a673d84bc000b Mon Sep 17 00:00:00 2001 From: Stephen Lombardo Date: Thu, 6 Apr 2023 14:55:02 -0400 Subject: [PATCH] update expected SQLCipher version number --- .../zetetic/database/sqlcipher_cts/SQLCipherVersionTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlcipher/src/androidTest/java/net/zetetic/database/sqlcipher_cts/SQLCipherVersionTest.java b/sqlcipher/src/androidTest/java/net/zetetic/database/sqlcipher_cts/SQLCipherVersionTest.java index 72378a6..e67b198 100644 --- a/sqlcipher/src/androidTest/java/net/zetetic/database/sqlcipher_cts/SQLCipherVersionTest.java +++ b/sqlcipher/src/androidTest/java/net/zetetic/database/sqlcipher_cts/SQLCipherVersionTest.java @@ -17,6 +17,6 @@ public class SQLCipherVersionTest extends AndroidSQLCipherTestCase { cipherVersion = cursor.getString(0); cursor.close(); } - assertThat(cipherVersion, containsString("4.5.3")); + assertThat(cipherVersion, containsString("4.5.4")); } }