From 7f7f8e73bc6f94ac6c378416fa83e5b999471d02 Mon Sep 17 00:00:00 2001 From: Tony Tam Date: Tue, 19 Jan 2016 22:23:12 -0500 Subject: [PATCH] updated quotes --- test/unit/view/partials/signatureSpec.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/unit/view/partials/signatureSpec.js b/test/unit/view/partials/signatureSpec.js index e57401f4..f709bd43 100644 --- a/test/unit/view/partials/signatureSpec.js +++ b/test/unit/view/partials/signatureSpec.js @@ -153,10 +153,10 @@ describe('SwaggerUi.partials.signature tests', function () { it('returns tag string when passing type string and xml:{"namespace": "http://swagger.io/schema/sample", "prefix": "sample"}', function () { var name = 'name'; var definition = { - "type": "string", - "xml": { - "namespace": "http://swagger.io/schema/sample", - "prefix": "sample" + type: 'string', + xml: { + namespace: 'http://swagger.io/schema/sample', + prefix: 'sample' } }; @@ -166,9 +166,9 @@ describe('SwaggerUi.partials.signature tests', function () { it('returns tag string when passing type string and xml:{"namespace": "http://swagger.io/schema/sample"}', function () { var name = 'name'; var definition = { - "type": "string", - "xml": { - "namespace": "http://swagger.io/schema/sample" + type: 'string', + xml: { + namespace: 'http://swagger.io/schema/sample' } };