Explorar el Código

Replace namespace usages by dedicated using in encoding test module

Patrick-Christopher Mattulat hace 1 año
padre
commit
8e6c1536d7
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      test/cases/encoding/Base64Test.cpp

+ 2 - 2
test/cases/encoding/Base64Test.cpp

@@ -10,8 +10,8 @@
 #include <gtest/gtest.h>
 #include <ls-std/ls-std-encoding.hpp>
 
-using namespace ls::std::encoding;
-using namespace ::testing;
+using ls::std::encoding::Base64;
+using testing::Test;
 
 namespace
 {