aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Gołębiowski <m.goleb@gmail.com>2015-06-16 14:44:24 +0200
committerMichał Gołębiowski <m.goleb@gmail.com>2015-06-16 14:44:24 +0200
commit5a1217e40193c8884155ccaf415091d326ddb52a (patch)
tree865dd1d2ddbee263afad42ebbfde672518064a89
parent8e111df641cca3e1b75b31a1971bfc89014b4ded (diff)
downloadjquery-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.js2
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,