updated quotes

This commit is contained in:
Tony Tam
2016-01-19 22:23:12 -05:00
parent 0d52f8efd1
commit 7f7f8e73bc

View File

@@ -153,10 +153,10 @@ describe('SwaggerUi.partials.signature tests', function () {
it('returns tag <test:tagname >string</test:tagname> 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 <test:tagname >string</test:tagname> 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'
}
};