aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/tests.h
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-09-22 10:51:40 -0400
committerJack Lloyd <[email protected]>2017-09-22 10:51:40 -0400
commitdc24f117eca49214d45582c83d2b8ddcc2c81704 (patch)
tree565852b4d57b555bd1213d453211541bf8f22327 /src/tests/tests.h
parenta1be64a4288d3a213c276dbe606165478a24a973 (diff)
Remove some using declarations in test code
Diffstat (limited to 'src/tests/tests.h')
-rw-r--r--src/tests/tests.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/tests.h b/src/tests/tests.h
index 32b654bbd..104ab43da 100644
--- a/src/tests/tests.h
+++ b/src/tests/tests.h
@@ -38,8 +38,6 @@ namespace Botan_Tests {
using Botan::BigInt;
#endif
-using Botan::OctetString;
-
class Test_Error : public Botan::Exception
{
public:
@@ -205,7 +203,9 @@ class Test
bool test_eq(const std::string& what, size_t produced, size_t expected);
bool test_eq_sz(const std::string& what, size_t produced, size_t expected);
- bool test_eq(const std::string& what, OctetString produced, OctetString expected);
+ bool test_eq(const std::string& what,
+ Botan::OctetString produced,
+ Botan::OctetString expected);
template<typename I1, typename I2>
bool test_int_eq(I1 x, I2 y, const char* what)