diff options
author | Jack Lloyd <[email protected]> | 2019-07-10 21:26:39 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-07-10 21:26:39 -0400 |
commit | 7ce479e51f0d43df600c620c6c6de721809b1546 (patch) | |
tree | 767c1b89c8a4d46e4f13455579f640ec3e33877c /src/tests/test_dl_group.cpp | |
parent | 874a082f4dacbac0ba65ea457c819392da222027 (diff) |
Remove tab chars
Death to \t
Diffstat (limited to 'src/tests/test_dl_group.cpp')
-rw-r--r-- | src/tests/test_dl_group.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tests/test_dl_group.cpp b/src/tests/test_dl_group.cpp index df5aaa8ce..bac0ea82f 100644 --- a/src/tests/test_dl_group.cpp +++ b/src/tests/test_dl_group.cpp @@ -45,12 +45,12 @@ class DL_Group_Tests final : public Test []() { Botan::DL_Group dl; dl.get_p(); }); #if !defined(BOTAN_HAS_SANITIZER_UNDEFINED) - result.test_throws("Bad generator param", - "DL_Group unknown PrimeType", - []() { - auto invalid_type = static_cast<Botan::DL_Group::PrimeType>(9); - Botan::DL_Group dl(Test::rng(), invalid_type, 1024); - }); + result.test_throws("Bad generator param", + "DL_Group unknown PrimeType", + []() { + auto invalid_type = static_cast<Botan::DL_Group::PrimeType>(9); + Botan::DL_Group dl(Test::rng(), invalid_type, 1024); + }); #endif return result; |