Fix README example

This commit is contained in:
John Ahlroos 2024-11-15 16:16:53 +01:00
parent 792a080914
commit f75572f9cc
Signed by: john
GPG Key ID: 258D0F70DB84CD5D
1 changed files with 1 additions and 4 deletions

View File

@ -6,7 +6,7 @@ Syntax Examples:
```java
// Assert that a root property is equal to a string
JsonAssert.assertThat("myprop").isEqualTo("foo");
JsonAssert.assertThat(JSON).field("myprop").isEqualTo("foo");
// Assert that the traversed path exists and the property is larger than two
JsonAssert.assertThat(JSON).path("a", "b", "c").isEqualTo(2);
@ -37,9 +37,6 @@ JsonAssert.assertThat(JSON).asArray().first().field("prop").isEqualTo(1);
// Assert matrix [[1,2],[3,4]]
assertThat(JSON).asArray().last().asArray().first().asInteger().isEqualTo(3);
```
For more examples see the unit tests in [unit tests](src/test/java/com/devsoap/json).