diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2019-06-26 00:08:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-26 00:08:16 +0200 |
commit | b466127b1f470365670beb8cd85f78451acd669d (patch) | |
tree | 8c710e118c6fc49a70c9bb281fefb04d72f28b37 /core/js | |
parent | a47403d5f85b2ebe2fa14672181b8ce0b6122d34 (diff) | |
parent | 97fbf91f29ffabe0cc272da801241d30473e634d (diff) | |
download | nextcloud-server-b466127b1f470365670beb8cd85f78451acd669d.tar.gz nextcloud-server-b466127b1f470365670beb8cd85f78451acd669d.zip |
Merge pull request #16055 from nextcloud/design/native-fonts
Use native font stack
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/tests/specs/setupchecksSpec.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/tests/specs/setupchecksSpec.js b/core/js/tests/specs/setupchecksSpec.js index b5248add984..2f28dcdaef7 100644 --- a/core/js/tests/specs/setupchecksSpec.js +++ b/core/js/tests/specs/setupchecksSpec.js @@ -145,7 +145,7 @@ describe('OC.SetupChecks tests', function() { describe('checkWOFF2Loading', function() { it('should fail with another response status code than the expected one', function(done) { - var async = OC.SetupChecks.checkWOFF2Loading(OC.filePath('core', '', 'fonts/Nunito-Regular.woff2'), 'http://example.org/PLACEHOLDER'); + var async = OC.SetupChecks.checkWOFF2Loading(OC.filePath('core', '', 'fonts/NotoSans-Regular-latin.woff2'), 'http://example.org/PLACEHOLDER'); suite.server.requests[0].respond(302); @@ -159,7 +159,7 @@ describe('OC.SetupChecks tests', function() { }); it('should return no error with the expected response status code', function(done) { - var async = OC.SetupChecks.checkWOFF2Loading(OC.filePath('core', '', 'fonts/Nunito-Regular.woff2'), 'http://example.org/PLACEHOLDER'); + var async = OC.SetupChecks.checkWOFF2Loading(OC.filePath('core', '', 'fonts/NotoSans-Regular-latin.woff2'), 'http://example.org/PLACEHOLDER'); suite.server.requests[0].respond(200); |