diff options
author | Jack Lloyd <[email protected]> | 2018-11-02 09:29:10 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-11-02 09:29:10 -0400 |
commit | 6c0b88066dd81deba23537e4d718291e9cfda7dd (patch) | |
tree | 2bd0d07890d916a60fe46d7e5f63d716764ed98a /src/tests/test_modes.cpp | |
parent | c1b8bc6c01d457155b51cab165c29c290c6eef89 (diff) |
Correct test
This was trying to test for issue in #1723 but was incorrect.
Diffstat (limited to 'src/tests/test_modes.cpp')
-rw-r--r-- | src/tests/test_modes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_modes.cpp b/src/tests/test_modes.cpp index ea74d795a..b371c476b 100644 --- a/src/tests/test_modes.cpp +++ b/src/tests/test_modes.cpp @@ -115,7 +115,7 @@ class Cipher_Mode_Tests final : public Text_Based_Test const size_t min_final_bytes = mode.minimum_final_size(); // FFI currently requires this, so assure it is true for all modes - result.test_gte("buffer sizes ok", update_granularity, min_final_bytes); + result.test_gt("buffer sizes ok", update_granularity, min_final_bytes); result.test_throws("Unkeyed object throws", [&]() { Botan::secure_vector<uint8_t> bad(update_granularity); |