From ae0d1b626e534e1960c03c63102fb78bc8e52e8a Mon Sep 17 00:00:00 2001 From: Sergio Moya <1083296+smoya@users.noreply.github.com> Date: Thu, 23 Jun 2022 17:09:52 +0200 Subject: [PATCH] fix linting issues --- test/models/server_test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/models/server_test.js b/test/models/server_test.js index 62a62b90e..24a68a7cd 100644 --- a/test/models/server_test.js +++ b/test/models/server_test.js @@ -1,5 +1,5 @@ const { expect } = require('chai'); -const js = { url: 'test.com', protocol: 'amqp', protocolVersion: '0-9-1', description: 'test', variables: { test1: { enum: ['value1', 'value2'], default: 'value1', description: 'test1', examples: ['value2'] } }, security: [{ oauth2: ['user:read'] }], bindings: { amqp: 'test' }, 'x-test': 'testing', tags: [ { name: 'env:development' } ] }; +const js = { url: 'test.com', protocol: 'amqp', protocolVersion: '0-9-1', description: 'test', variables: { test1: { enum: ['value1', 'value2'], default: 'value1', description: 'test1', examples: ['value2'] } }, security: [{ oauth2: ['user:read'] }], bindings: { amqp: 'test' }, 'x-test': 'testing', tags: [{ name: 'env:development' }] }; const Server = require('../../lib/models/server');