Skip to content

Commit

Permalink
Update operation-reply.spec.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaslagoni authored Dec 3, 2024
1 parent 681ec38 commit 070a071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/parser/test/models/v3/operation-reply.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { assertExtensions } from './utils';
describe('OperationReply model', function() {
describe('.id()', function() {
it('should return id', function() {
const d = new OperationReply({}, { asyncapi: {} as any, pointer: '', id: 'reply' });
const d = new OperationReply({id: 'reply'}, { asyncapi: {} as any, pointer: '' });
expect(d.id()).toEqual('reply');
});
});
Expand Down

0 comments on commit 070a071

Please sign in to comment.