Skip to content

Commit c8d6571

Browse files
Copilothotlong
andcommitted
Fix protocol plugin version tests to expect 0.2.0
Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
1 parent 20b76d6 commit c8d6571

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/protocols/json-rpc/src/index.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ describe('JSONRPCPlugin', () => {
6060
describe('Plugin Lifecycle', () => {
6161
it('should have correct name and version', () => {
6262
expect(plugin.name).toBe('@objectql/protocol-json-rpc');
63-
expect(plugin.version).toBe('0.1.0');
63+
expect(plugin.version).toBe('0.2.0');
6464
});
6565

6666
it('should install successfully', async () => {

packages/protocols/odata-v4/src/index.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ describe('ODataV4Plugin', () => {
6161
describe('Plugin Lifecycle', () => {
6262
it('should have correct name and version', () => {
6363
expect(plugin.name).toBe('@objectql/protocol-odata-v4');
64-
expect(plugin.version).toBe('0.1.0');
64+
expect(plugin.version).toBe('0.2.0');
6565
});
6666

6767
it('should install successfully', async () => {

0 commit comments

Comments
 (0)