Skip to content

Commit

Permalink
update test snapshots in tests/ternaries/with-balanced-formatting (...)
Browse files Browse the repository at this point in the history
add note:

The changes from these updates close #492 (brodybits/prettierx PR #492).
  • Loading branch information
Christopher J. Brody committed Jun 23, 2021
1 parent c81099e commit 021afa5
Showing 1 changed file with 30 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ let isSpace = false;
const dress = isSpace
? {
spaceSuit: 3,
oxygenCylinders: 6
}
spaceSuit: 3,
oxygenCylinders: 6
}
: {
shirts: 3,
paints: 3
};
shirts: 3,
paints: 3
};
================================================================================
`;
Expand Down Expand Up @@ -60,13 +60,13 @@ let isSpace = false;
const dress = isSpace
? {
spaceSuit: 3,
oxygenCylinders: 6
}
spaceSuit: 3,
oxygenCylinders: 6
}
: {
shirts: 3,
paints: 3
};
shirts: 3,
paints: 3
};
================================================================================
`;
Expand Down Expand Up @@ -96,13 +96,13 @@ let isSpace = false;
const dress = isSpace
? {
spaceSuit: 3,
oxygenCylinders: 6
}
spaceSuit: 3,
oxygenCylinders: 6
}
: {
shirts: 3,
paints: 3
};
shirts: 3,
paints: 3
};
================================================================================
`;
Expand Down Expand Up @@ -133,13 +133,13 @@ let isSpace = false;
const dress = isSpace
? {
spaceSuit: 3,
oxygenCylinders: 6
}
spaceSuit: 3,
oxygenCylinders: 6
}
: {
shirts: 3,
paints: 3
};
shirts: 3,
paints: 3
};
================================================================================
`;
Expand Down Expand Up @@ -224,8 +224,8 @@ function test1() {
? Promise(1)
: Promise(2)
: condition3
? Promise(3)
: Promise(4);
? Promise(3)
: Promise(4);
}
================================================================================
Expand Down Expand Up @@ -268,8 +268,8 @@ function test1() {
? Promise(1)
: Promise(2)
: condition3
? Promise(3)
: Promise(4);
? Promise(3)
: Promise(4);
}
================================================================================
Expand Down Expand Up @@ -313,8 +313,8 @@ function test1() {
? Promise(1)
: Promise(2)
: condition3
? Promise(3)
: Promise(4);
? Promise(3)
: Promise(4);
}
================================================================================
Expand Down

0 comments on commit 021afa5

Please sign in to comment.