Jonas Pflanzer 5 lat temu
rodzic
commit
984213290d
1 zmienionych plików z 2 dodań i 5 usunięć
  1. 2 5
      daemon/test/ConfigMock.cpp

+ 2 - 5
daemon/test/ConfigMock.cpp

@@ -1,12 +1,10 @@
 #include "../include/Config.h"
 
 namespace Config {
-  std::map<std::string, std::string> storage;
+std::map<std::string, std::string> storage;
 };
 
-bool Config::init(const std::string &filename) {
-  return true;
-}
+bool Config::init(const std::string &filename) { return true; }
 
 std::string Config::getValue(const std::string &key) {
   auto it = storage.find(key);
@@ -16,4 +14,3 @@ std::string Config::getValue(const std::string &key) {
 
   return "";
 }
-