Skip to content

Commit a360f1c

Browse files
committed
test(NODE-5594): remove callback
1 parent 47f8956 commit a360f1c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/node/decimal128.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ describe('Decimal128', function () {
439439
generateFromStringTests(tests);
440440
});
441441

442-
it('from string round', function (done) {
442+
it('from string round', function () {
443443
// Create decimal from string value 10E-6177
444444
const result = Decimal128.fromString('10E-6177');
445445
const bytes = Buffer.from(
@@ -775,8 +775,6 @@ describe('Decimal128', function () {
775775
// ].reverse()
776776
// );
777777
// expect(bytes).to.deep.equal(result.bytes);
778-
779-
done();
780778
});
781779

782780
context("when input has leading '+' and has more than 34 significant digits", function () {

0 commit comments

Comments
 (0)