Skip to content

Commit

Permalink
chore: Fix JSON002 error (#603)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveTryon committed Jul 2, 2024
1 parent 494fa75 commit cdc046a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ object Ctor(Type type)
mapper = mapperConfiguration.CreateMapper();
}

protected const string JSONConfigWithManifestPath = "{ \"ManifestDirPath\": \"manifestDirPath\"}";
protected const string JSONConfigGoodWithManifestInfo = "{ \"ManifestInfo\": [{ \"Name\":\"manifest\", \"Version\":\"1\"}]}";
protected const string JSONConfigWithManifestPath = $"{{ \"ManifestDirPath\": \"manifestDirPath\"}}";
protected const string JSONConfigGoodWithManifestInfo = $"{{ \"ManifestInfo\": [{{ \"Name\":\"manifest\", \"Version\":\"1\"}}]}}";
}

0 comments on commit cdc046a

Please sign in to comment.