summaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2014-05-31 21:11:29 +0200
committerLukas Reschke <lukas@statuscode.ch>2014-05-31 21:11:29 +0200
commit603b6c13b4a187766b33b49c7923399e78e18295 (patch)
tree13fbbdb4f7c8cbd66f1af62b676cc33e09855a1b /core/js
parent360a79b8f492ec8597c1ec8a55c1dde2837c8104 (diff)
downloadnextcloud-server-603b6c13b4a187766b33b49c7923399e78e18295.tar.gz
nextcloud-server-603b6c13b4a187766b33b49c7923399e78e18295.zip
Fix typo
Diffstat (limited to 'core/js')
-rw-r--r--core/js/tests/specs/coreSpec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/tests/specs/coreSpec.js b/core/js/tests/specs/coreSpec.js
index fb237bad5df..dea4d4b91cf 100644
--- a/core/js/tests/specs/coreSpec.js
+++ b/core/js/tests/specs/coreSpec.js
@@ -131,7 +131,7 @@ describe('Core base tests', function() {
it('Returns a sanitized string if a string containing HTML is given', function() {
expect(escapeHTML('There needs to be a <script>alert(\"Unit\" + \'test\')</script> for it!')).toEqual('There needs to be a &lt;script&gt;alert(&quot;Unit&quot; + &#039;test&#039;)&lt;/script&gt; for it!');
});
- it('Returns the string without modification if no potential dangerous character is passed.', function() {
+ it('Returns the string without modification if no potentially dangerous character is passed.', function() {
expect(escapeHTML('This is a good string without HTML.')).toEqual('This is a good string without HTML.');
});
});