Skip to content

Commit 5396b1c

Browse files
committed
Style tweaks
1 parent 532a461 commit 5396b1c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/components/__tests__/Link-test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe('A Link', function () {
2424
];
2525

2626
var div = document.createElement('div');
27-
TestLocation.history = ['/link'];
27+
TestLocation.history = [ '/link' ];
2828

2929
Router.run(routes, TestLocation, function (Handler) {
3030
React.render(<Handler/>, div, function () {
@@ -114,7 +114,7 @@ describe('A Link', function () {
114114
<Route name="link" handler={LinkHandler} />
115115
];
116116
var div = document.createElement('div');
117-
TestLocation.history = ['/link'];
117+
TestLocation.history = [ '/link' ];
118118

119119
Router.run(routes, TestLocation, function (Handler) {
120120
React.render(<Handler/>, div, function () {
@@ -125,7 +125,7 @@ describe('A Link', function () {
125125

126126
it('transitions to the correct route', function (done) {
127127
var div = document.createElement('div');
128-
TestLocation.history = ['/link'];
128+
TestLocation.history = [ '/link' ];
129129

130130
var LinkHandler = React.createClass({
131131
handleClick: function () {

0 commit comments

Comments
 (0)