| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/system/platforminfo_unittest.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/platforminfo_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/platforminfo_unittest.py
|
| index e9f434116098a662cdbae31da259263b76557a24..4627afcd7c953d4ae57f8dbde6147b974f28f4ea 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/platforminfo_unittest.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/platforminfo_unittest.py
|
| @@ -76,7 +76,8 @@ def fake_executive(output=None):
|
| class TestPlatformInfo(unittest.TestCase):
|
|
|
| def make_info(self, sys_module=None, platform_module=None, filesystem_module=None, executive=None):
|
| - return PlatformInfo(sys_module or fake_sys(), platform_module or fake_platform(), filesystem_module or MockFileSystem(), executive or fake_executive())
|
| + return PlatformInfo(sys_module or fake_sys(), platform_module or fake_platform(),
|
| + filesystem_module or MockFileSystem(), executive or fake_executive())
|
|
|
| def test_real_code(self):
|
| # This test makes sure the real (unmocked) code actually works.
|
|
|