Codacy style changes (minor)

This commit is contained in:
Angelos Chalaris
2018-08-02 14:10:16 +03:00
parent ca90646923
commit 5c38423805
21 changed files with 88 additions and 91 deletions

View File

@ -12,8 +12,8 @@ test('When n is odd, times by 3 and add 1', () => {
});
test('Eventually reaches 1', () => {
let n = 9;
while(true){
if (n === 1){
while(true) {
if (n === 1) {
expect(n).toBe(1);
break;
}