aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_fpe.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-12-19 00:32:51 -0500
committerJack Lloyd <[email protected]>2016-12-19 00:32:51 -0500
commit4b1a1fd5ec72df31bc43c5d82311a316c60d61f6 (patch)
tree3faf085ba5270f92d1d50b09e5fd642f9041b035 /src/tests/test_fpe.cpp
parentabac6ab59b363c2ac571d13496a70d98e04a5c2f (diff)
Minor refactoring of Text_Based_Test
Turns out astyle has some bugs wrt C++11 initialize lists. Rather than having astyle mangle all of the tests, convert to using a string which is split once at the start instead of a vector of keys.
Diffstat (limited to 'src/tests/test_fpe.cpp')
-rw-r--r--src/tests/test_fpe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_fpe.cpp b/src/tests/test_fpe.cpp
index e2a7c6e68..a88b793c7 100644
--- a/src/tests/test_fpe.cpp
+++ b/src/tests/test_fpe.cpp
@@ -17,7 +17,7 @@ namespace Botan_Tests {
class FPE_FE1_Tests : public Text_Based_Test
{
public:
- FPE_FE1_Tests() : Text_Based_Test("fpe_fe1.vec", {"Mod", "In", "Out", "Key", "Tweak"}) {}
+ FPE_FE1_Tests() : Text_Based_Test("fpe_fe1.vec", "Mod,In,Out,Key,Tweak") {}
Test::Result run_one_test(const std::string&, const VarMap& vars) override
{