Skip to content

Commit

Permalink
test(tools): sanity check
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Blaginov <[email protected]>
  • Loading branch information
Stefan Blaginov committed Mar 9, 2023
1 parent 8805bca commit aee6d66
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -443,25 +443,25 @@ describe('ProtobufVisitor', function () {
assert.equal(
writer.data.get('concerto.metamodel.v0_4_0.proto')
.replace(/\r\n/g, '\n'),
expectedMetamodelProtobuf
expectedMetamodelProtobuf.replace(/\r\n/g, '\n')
);

assert.equal(
writer.data.get('org.accordproject.commonmark.v0_5_0.proto')
.replace(/\r\n/g, '\n'),
expectedCommonmarkProtobuf
expectedCommonmarkProtobuf.replace(/\r\n/g, '\n')
);

assert.equal(
writer.data.get('org.accordproject.party.v0_2_0.proto')
.replace(/\r\n/g, '\n'),
expectedApapPartyProtobuf
expectedApapPartyProtobuf.replace(/\r\n/g, '\n')
);

assert.equal(
writer.data.get('org.accordproject.protocol.v1_0_0.proto')
.replace(/\r\n/g, '\n'),
expectedApapProtocolProtobuf
expectedApapProtocolProtobuf.replace(/\r\n/g, '\n')
);
});
});
Expand Down

0 comments on commit aee6d66

Please sign in to comment.