aboutsummaryrefslogtreecommitdiffstats
path: root/tests/netx
diff options
context:
space:
mode:
authorMark Wielaard <[email protected]>2011-03-11 09:48:55 +0100
committerMark Wielaard <[email protected]>2011-03-11 09:48:55 +0100
commit99f114f202199679414d5e02041c6cd2f38facc8 (patch)
tree3e003cb1704de2eedd84139529018208a161b297 /tests/netx
parent00af9d3f682ce2cde44a4d37b45c97fa8ac441c1 (diff)
Make sure hostname used for testIsResolvable is really not resolvable.
2011-03-10 Mark Wielaard <[email protected]> * tests/netx/pac/pac-funcs-test.js (testIsResolvable): Change single host name icedtea to NotIcedTeaHost to make sure it really isn't resolvable.
Diffstat (limited to 'tests/netx')
-rw-r--r--tests/netx/pac/pac-funcs-test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/netx/pac/pac-funcs-test.js b/tests/netx/pac/pac-funcs-test.js
index f14efdd..e5b1bcb 100644
--- a/tests/netx/pac/pac-funcs-test.js
+++ b/tests/netx/pac/pac-funcs-test.js
@@ -100,7 +100,7 @@ function testIsResolvable() {
var tests = [
[ true, "icedtea.classpath.org", "icedtea.classpath.org" ],
[ true, "classpath.org" ],
- [ false, "icedtea" ],
+ [ false, "NotIcedTeaHost" ],
[ false, "foobar.classpath.org" ],
[ false, "icedtea.classpath.com" ]
];