Fixed copy/paste error
diff --git a/compiler/cli_test.py b/compiler/cli_test.py
index 677b092..a30c067 100644
--- a/compiler/cli_test.py
+++ b/compiler/cli_test.py
@@ -42,18 +42,18 @@
         ])
         self.assertEqual(args.manifest_file, 'bar')
 
-      def test_make_command_line_parser_for_interprerter(self):
-         parser = cli.make_command_line_parser()
-         args = parser.parse_args([
-             '--manifest_file=bar',
-             '--manifest_root=bazz',
-             '--outputpar=baz',
-             '--stub_file=quux',
-             '--zip_safe=False',
-             '--interpreter=foobar',
-             'foo',
-         ])
-         self.assertEqual(args.interpreter, 'foobar')
+    def test_make_command_line_parser_for_interprerter(self):
+        parser = cli.make_command_line_parser()
+        args = parser.parse_args([
+            '--manifest_file=bar',
+            '--manifest_root=bazz',
+            '--outputpar=baz',
+            '--stub_file=quux',
+            '--zip_safe=False',
+            '--interpreter=foobar',
+            'foo',
+        ])
+        self.assertEqual(args.interpreter, 'foobar')
 
     def test_stub(self):
         valid_cases = [