Skip to content

Commit

Permalink
style: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinaldy Rafli committed Aug 16, 2021
1 parent febfb8e commit 038eac9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
custom: ["https://saweria.co/teknologiumum"]
custom: ['https://saweria.co/teknologiumum']
16 changes: 8 additions & 8 deletions tests/rust.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,9 @@ test('bubble sort', () => {
bubble_sort(&mut strings);
println!("After: {:?}", strings);
}`)
assert.equal(code, 'Rust')
})
}`);
assert.equal(code, 'Rust');
});

test('heap sort', () => {
const code = detectLang(`fn main() {
Expand Down Expand Up @@ -253,9 +253,9 @@ test('heap sort', () => {
break;
}
}
}`)
assert.equal(code, 'Rust')
})
}`);
assert.equal(code, 'Rust');
});

test('ludic number', () => {
const code = detectLang(`const ARRAY_MAX: usize = 25_000;
Expand Down Expand Up @@ -356,7 +356,7 @@ test('ludic number', () => {
}
}
`);
assert.equal(code, 'Rust')
})
assert.equal(code, 'Rust');
});

test.run();

0 comments on commit 038eac9

Please sign in to comment.