From dc641c48bce783bc03576d7e0e1c35e096c63cfe Mon Sep 17 00:00:00 2001 From: Jeff Wheeler Date: Thu, 8 Oct 2015 19:36:05 -0400 Subject: [PATCH] PR #594 Fixing test for issue #524 --- examples/simple-jsbeautifyrc/jsx/expected/test.jsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/examples/simple-jsbeautifyrc/jsx/expected/test.jsx b/examples/simple-jsbeautifyrc/jsx/expected/test.jsx index 7026b76..d8cef2f 100644 --- a/examples/simple-jsbeautifyrc/jsx/expected/test.jsx +++ b/examples/simple-jsbeautifyrc/jsx/expected/test.jsx @@ -1,10 +1,7 @@ var Mist = React.createClass({ renderList: function() { - return this - .props - .items - .map(function(item) { - return {item}} key={item.id}/>; - }); + return this.props.items.map(function(item) { + return {item}} key={item.id}/>; + }); } }); \ No newline at end of file