aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2015-12-08 16:59:38 +0100
committerSimon Warta <[email protected]>2015-12-08 16:59:38 +0100
commitd5ca099ea38ecca9d1b085344783b85cc518d1e6 (patch)
tree47a0e909837894e46ba4613c6d94c34378dd396d /src
parent91b558bf937edc88d79b7a765eab65f34b4e913c (diff)
Fix indent in test_passhash
Diffstat (limited to 'src')
-rw-r--r--src/tests/test_passhash.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_passhash.cpp b/src/tests/test_passhash.cpp
index e9606062c..8cbad507e 100644
--- a/src/tests/test_passhash.cpp
+++ b/src/tests/test_passhash.cpp
@@ -38,7 +38,7 @@ class Bcrypt_Tests : public Text_Based_Test
const size_t max_level = 1 + std::min<size_t>(Test::soak_level() / 2, 10);
- for(size_t level = 1; level <= max_level; ++level)
+ for(size_t level = 1; level <= max_level; ++level)
{
const std::string gen_hash = generate_bcrypt(password, Test::rng(), level);
result.test_eq("generated hash accepted", Botan::check_bcrypt(password, gen_hash), true);