Skip to content

Commit 5890f4e

Browse files
committed
fixed accidental whitespace change
1 parent 87285ef commit 5890f4e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/lib/rules/no-unused-styles.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ const tests = {
112112
});
113113
const Hello = React.createClass({
114114
getInitialState: function() {
115-
return { condition: true, condition2: true };
115+
return { condition: true, condition2: true };
116116
},
117117
render: function() {
118118
return (
@@ -135,7 +135,7 @@ const tests = {
135135
});
136136
const Hello = React.createClass({
137137
getInitialState: function() {
138-
return { condition: true };
138+
return { condition: true };
139139
},
140140
render: function() {
141141
return (
@@ -175,7 +175,7 @@ const tests = {
175175
code: `
176176
const Hello = React.createClass({
177177
getInitialState: function() {
178-
return { condition: true };
178+
return { condition: true };
179179
},
180180
render: function() {
181181
const myStyle = this.state.condition ? styles.text : styles.text2;

0 commit comments

Comments
 (0)