From 2a01b54bb4be248a48a349a27c180587de344fd5 Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Mon, 1 Dec 2014 15:46:46 -0500 Subject: [PATCH] Fix whitespace for async test detection Presumably since Python is whitespace-sensitive, this is actually quite important? --- tools/packaging/test262.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/packaging/test262.py b/tools/packaging/test262.py index cc6a83400b..0e11298f33 100755 --- a/tools/packaging/test262.py +++ b/tools/packaging/test262.py @@ -265,7 +265,7 @@ class TestCase(object): return 'noStrict' in self.testRecord def IsAsyncTest(self): - return '$DONE' in self.test + return '$DONE' in self.test def GetIncludeList(self): if self.testRecord.get('includes'):