Browse Source

Closes #592: Fix indentation in test

Marcela Bonell 10 years ago
parent
commit
bd9723a4f1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/tests/gcc-cpp-hello-world/hello-world.cpp

+ 1 - 1
test/tests/gcc-cpp-hello-world/hello-world.cpp

@@ -1,6 +1,6 @@
 #include <iostream>
 
 int main() {
-    std::cout << "Hello World!\n";
+	std::cout << "Hello World!\n";
 	return 0;
 }