Skip to content

Commit 37087a5

Browse files
committed
Fix tests
1 parent 61d4362 commit 37087a5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Diff for: src/test/java/io/github/noncat_lang/ValuesTest.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,17 @@ void OptionalEmptyWhenFieldNotFound() {
2525
// then
2626
assertThat(values.get("nope")).isEmpty();
2727
}
28-
28+
29+
@Test
2930
void initializedWithData() {
3031
// given
3132
// when
3233
Values values = Values.of("foo", "bar");
3334
// then
3435
assertThat(values.get("foo")).hasValue("bar");
3536
}
36-
37+
38+
@Test
3739
void initializedFromMap() {
3840
// given
3941
// when

0 commit comments

Comments
 (0)