Remove logging messages

Looks like these were checked in by mistake
This commit is contained in:
Matt Bierner 2021-08-11 18:52:55 -07:00
parent 6dafff7b3a
commit 183cb1bfa8
No known key found for this signature in database
GPG key ID: 099C331567E11888

View file

@ -9,7 +9,6 @@ suite('Arrays', () => {
test('findFirst', () => {
const array = [1, 4, 5, 7, 55, 59, 60, 61, 64, 69];
console.log('hello');
let idx = arrays.findFirstInSorted(array, e => e >= 0);
assert.strictEqual(array[idx], 1);
@ -21,7 +20,6 @@ suite('Arrays', () => {
idx = arrays.findFirstInSorted(array, e => e >= 61);
assert.strictEqual(array[idx], 61);
console.log('world');
idx = arrays.findFirstInSorted(array, e => e >= 69);
assert.strictEqual(array[idx], 69);
@ -30,7 +28,7 @@ suite('Arrays', () => {
assert.strictEqual(idx, array.length);
idx = arrays.findFirstInSorted([], e => e >= 0);
assert.strictEqual(array[idx], 3);
assert.strictEqual(array[idx], 1);
});
test('quickSelect', () => {