diff options
author | Ms2ger <ms2ger@gmail.com> | 2014-03-03 19:04:18 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2014-03-03 19:04:18 +0100 |
commit | bb7db4c948e4bf89999201f2f364f7f3c650ae2d (patch) | |
tree | 9f7a7075badd6090903de97829a1b673aaaadd2c | |
parent | 87715c14e19702ea644ca8a3dea4f70666d2b242 (diff) | |
download | servo-bb7db4c948e4bf89999201f2f364f7f3c650ae2d.tar.gz servo-bb7db4c948e4bf89999201f2f364f7f3c650ae2d.zip |
Fix test.
-rw-r--r-- | src/test/html/content/test_union.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/html/content/test_union.html b/src/test/html/content/test_union.html index d5483ad8a3a..fd2bf84f96b 100644 --- a/src/test/html/content/test_union.html +++ b/src/test/html/content/test_union.html @@ -18,7 +18,7 @@ }); should_throw(function() { sel.add(div) }); - should_throw(function() { sel.add(optgroup, function() {}) }); + should_not_throw(function() { sel.add(optgroup, function() {}) }); finish(); </script> |