Skip to content

Commit

Permalink
remove input
Browse files Browse the repository at this point in the history
  • Loading branch information
benstone1 committed Oct 29, 2020
1 parent 0167e0c commit fd049db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/loops.test.js
Original file line number Diff line number Diff line change
@@ -165,7 +165,7 @@ describe("tillXTimes9ForLoop", () => {

describe("endsWithFiveWhileLoop", () => {
test("returns an array from 1 to 100 with only numbers that end in 5", () => {
expect(endsWithFiveWhileLoop(5)).toEqual([
expect(endsWithFiveWhileLoop()).toEqual([
5,
15,
25,
@@ -186,7 +186,7 @@ describe("endsWithFiveWhileLoop", () => {
});
describe("endsWithFiveForLoop", () => {
test("returns an array from 1 to 100 with only numbers that end in 5", () => {
expect(endsWithFiveForLoop(5)).toEqual([
expect(endsWithFiveForLoop()).toEqual([
5,
15,
25,

0 comments on commit fd049db

Please sign in to comment.