diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2015-06-14 00:37:31 +0200 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2015-06-14 00:37:31 +0200 |
commit | c17543fd3c14ff86c448dbb90f9fe1223661a73b (patch) | |
tree | e0521ce4d8c0a4498ca38da0839e89b767d49710 | |
parent | 349edbd6c53aa93d4fd207d3c0c4c24a7b0314dd (diff) | |
download | jquery-c17543fd3c14ff86c448dbb90f9fe1223661a73b.tar.gz jquery-c17543fd3c14ff86c448dbb90f9fe1223661a73b.zip |
Tests: Correct a typo in the regex matching Safari 8
-rw-r--r-- | test/unit/support.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/support.js b/test/unit/support.js index bf3e114d8..5a96d28a1 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -107,7 +107,7 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec "radioValue": false, "reliableMarginRight": true }; - } else if ( /8.0(\.\d+|) safari/i.test( userAgent ) ) { + } else if ( /8\.0(\.\d+|) safari/i.test( userAgent ) ) { expected = { "ajax": true, "boxSizingReliable": true, |