Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Summpot committed Oct 29, 2023
1 parent c099437 commit c48b1f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TreeSitterSharp.Json.Tests/JsonParserTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class JsonParserTests
[Fact]
public void BasicParsing()
{
var parser = Parser.Create(JsonLanguageProvider.GetLanguage());
var parser = new JsonParser();
string code = "[1, null]";
var tree = parser.Parse(code);
Node rootNode = tree.Root;
Expand All @@ -28,7 +28,7 @@ public void BasicParsing()
[Fact]
public void PrintTree()
{
var parser = Parser.Create(JsonLanguageProvider.GetLanguage());
var parser = new JsonParser();
string code = "[1, null]";
var tree = parser.Parse(code);
Node rootNode = tree.Root;
Expand Down

0 comments on commit c48b1f2

Please sign in to comment.