Add indication of response being a collection

This commit is contained in:
Shelby Sanders 2014-07-09 03:36:41 -07:00
parent 2284820b66
commit 88c330a503
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -7,6 +7,7 @@ lib-cov
*.pid
*.gz
.idea
pids
logs
results

View File

@ -540,7 +540,7 @@
return dataType;
} else {
if (listType != null) {
return models[listType].getMockSignature();
return '<span class="strong">Array of </span>' + models[listType].getMockSignature();
} else {
return models[dataType].getMockSignature();
}