diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2015-06-16 14:44:24 +0200 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2015-06-16 14:44:24 +0200 |
commit | 5a1217e40193c8884155ccaf415091d326ddb52a (patch) | |
tree | 865dd1d2ddbee263afad42ebbfde672518064a89 | |
parent | 8e111df641cca3e1b75b31a1971bfc89014b4ded (diff) | |
download | jquery-5a1217e40193c8884155ccaf415091d326ddb52a.tar.gz jquery-5a1217e40193c8884155ccaf415091d326ddb52a.zip |
Tests: Remove Edge version from the user agent
The version will change in the future, matching by /edge\//i is enough
Refs 8e111df641cca3e1b75b31a1971bfc89014b4ded
-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 d1e0d189a..46f904efa 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -51,7 +51,7 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec var expected, userAgent = window.navigator.userAgent; - if ( /edge\/12/i.test( userAgent ) ) { + if ( /edge\//i.test( userAgent ) ) { expected = { "ajax": true, "boxSizingReliable": true, |