Skip to content

Commit 50f0fa5

Browse files
committed
update comments
1 parent a3590cb commit 50f0fa5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

qunit_test_helpers.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
// TODO - double check all NaN results are correct; try to make some better/more meaningful tests
2727

2828
QUnit.test('Unit Conversion', function(assert) {
29-
/* Confirming general Javascript Math/IEEE-754 assumptions */
29+
/* Test Unit Conversion Functions */
3030

3131
assert.equal(cm2meters(100), 1);
3232
assert.equal(cm2meters(10), 0.1);
@@ -38,11 +38,11 @@
3838

3939
});
4040

41-
// TODO keep this here or leave it in Endrings?
41+
4242
QUnit.test('General Math', function(assert) {
4343
/* Confirming general Javascript Math/IEEE-754 assumptions */
4444

45-
/* Make sure Math.log is the same as Java (Natural log) */
45+
/* Make sure JavaScript Math.log is the same as Java (Natural log) */
4646
assert.close(Math.log(2.71), 0.9969486348916096, 1e-15, 'Natural log of truncated e (2.71)');
4747
assert.equal(Math.log(Math.E), 1.0, 'Natural log of Math.E (exact)');
4848
assert.equal(Math.log(1), 0);

0 commit comments

Comments
 (0)