diff --git a/test/testclass.cpp b/test/testclass.cpp
index 2180e1073..844c59b92 100644
--- a/test/testclass.cpp
+++ b/test/testclass.cpp
@@ -41,13 +41,13 @@ private:
// Load std.cfg configuration
{
const char xmldata[] = "\n"
- "\n"
- " \n"
- " malloc\n"
- " free\n"
- " \n"
- " \n"
- "";
+ "\n"
+ " \n"
+ " malloc\n"
+ " free\n"
+ " \n"
+ " \n"
+ "";
tinyxml2::XMLDocument doc;
doc.Parse(xmldata, sizeof(xmldata));
settings0.library.load(doc);
diff --git a/test/testcondition.cpp b/test/testcondition.cpp
index f5dee40d3..e7531a812 100644
--- a/test/testcondition.cpp
+++ b/test/testcondition.cpp
@@ -44,9 +44,9 @@ private:
settings0.addEnabled("warning");
const char cfg[] = "\n"
- "\n"
- " \n"
- "";
+ "\n"
+ " \n"
+ "";
tinyxml2::XMLDocument xmldoc;
xmldoc.Parse(cfg, sizeof(cfg));
settings1.addEnabled("style");
diff --git a/test/testleakautovar.cpp b/test/testleakautovar.cpp
index 6a5617bb8..28a6fa532 100644
--- a/test/testleakautovar.cpp
+++ b/test/testleakautovar.cpp
@@ -49,9 +49,9 @@ private:
settings.library.smartPointers.insert("std::unique_ptr");
const char xmldata[] = "\n"
- "\n"
- " \n"
- "";
+ "\n"
+ " \n"
+ "";
tinyxml2::XMLDocument doc;
doc.Parse(xmldata, sizeof(xmldata));
settings.library.load(doc);
diff --git a/test/testvalueflow.cpp b/test/testvalueflow.cpp
index 52fb89514..f0947e044 100644
--- a/test/testvalueflow.cpp
+++ b/test/testvalueflow.cpp
@@ -46,10 +46,10 @@ private:
void run() OVERRIDE {
// strcpy, abort cfg
const char cfg[] = "\n"
- "\n"
- " \n"
- " true \n" // abort is a noreturn function
- "";
+ "\n"
+ " \n"
+ " true \n" // abort is a noreturn function
+ "";
settings.library.loadxmldata(cfg, sizeof(cfg));
LOAD_LIB_2(settings.library, "std.cfg");