Skip to content

Commit

Permalink
Fixed typo in unit testing exercises (issue-56) (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlambert125 authored Sep 23, 2024
1 parent 5331e17 commit fe6b5be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/unit-testing/exercises/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ to our car that exceeds the gas tank size.
//TODO: can't have more gas than tank size, expect an exception
@Test()
public void testGasOverfillException() {
assertthrows(IllegalArgumentException.class, () -> );
assertThrows(IllegalArgumentException.class, () -> );
}
```

Expand Down Expand Up @@ -125,4 +125,4 @@ public void testGasOverfillException() {
}
```

{{% /expand %}}
{{% /expand %}}

0 comments on commit fe6b5be

Please sign in to comment.