Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
test: fix wrong python script indentation
Browse files Browse the repository at this point in the history
A previous chakra-specific customization of `test/message/testcfg.py`
introduced wrong indentation (42bc284).
This causes all `.chakracore.out` message tests be skipped instead of
customized.

Fixed the wrong indentation.

PR-URL: #54
Reviewed-By: Sandeep Agarwal <Agarwal.Sandeep@microsoft.com>
  • Loading branch information
Jianchun Xu committed Apr 13, 2016
1 parent bb0707b commit 40b5f7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/message/testcfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def ListTests(self, current_path, path, arch, mode):
if not exists(output_path):
print "Could not find %s or %s" % (output_path, engine_output_path)
continue
result.append(MessageTestCase(test, file_path, output_path,
result.append(MessageTestCase(test, file_path, output_path,
arch, mode, self.context, self))
return result

Expand Down

0 comments on commit 40b5f7c

Please sign in to comment.