]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix typo
authorLukas Reschke <lukas@statuscode.ch>
Sat, 31 May 2014 19:11:29 +0000 (21:11 +0200)
committerLukas Reschke <lukas@statuscode.ch>
Sat, 31 May 2014 19:11:29 +0000 (21:11 +0200)
core/js/tests/specs/coreSpec.js

index fb237bad5df759a6d4619e5b69cf88ed22a7d6e4..dea4d4b91cf17d3e750b3c77312d639c4236b032 100644 (file)
@@ -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.');
                });
        });