Skip to content

Commit

Permalink
Changelog, initialize template parser
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Widdis <[email protected]>
  • Loading branch information
dbwiddis committed Jul 12, 2024
1 parent 7a7d0b1 commit 74d0845
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
### Documentation
### Maintenance
### Refactoring
- Improve Template and WorkflowState builders ([#778](https://github.com/opensearch-project/flow-framework/pull/778))
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ public void testNullToEmptyString() throws IOException {
DeprecationHandler.IGNORE_DEPRECATIONS,
"{\"name\":\"test\"}"
);
ensureExpectedToken(XContentParser.Token.START_OBJECT, parser.nextToken(), parser);
t = Template.parse(parser, true);
String json = t.toJson();
assertTrue(json.contains("\"name\":\"test\""));
Expand Down

0 comments on commit 74d0845

Please sign in to comment.