Skip to content

Commit

Permalink
Fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
pchitolina-fauna committed Jan 24, 2024
1 parent 820862c commit a6fa64b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public void testGetValueAsString() throws IOException {
public void testGetValueAsInt() throws IOException {
String s = "{\"@int\": \"123\"}";
InputStream inputStream = new ByteArrayInputStream(s.getBytes());
Utf8FaunaReader reader = new Utf8FaunaReader(inputStream);
FaunaParser reader = new FaunaParser(inputStream);

List<Map.Entry<FaunaTokenType, Object>> expectedTokens = List.of(
Map.entry(FaunaTokenType.INT, 123)
Expand Down

0 comments on commit a6fa64b

Please sign in to comment.