diff options
author | Mark Wielaard <[email protected]> | 2011-03-11 09:48:55 +0100 |
---|---|---|
committer | Mark Wielaard <[email protected]> | 2011-03-11 09:48:55 +0100 |
commit | 99f114f202199679414d5e02041c6cd2f38facc8 (patch) | |
tree | 3e003cb1704de2eedd84139529018208a161b297 | |
parent | 00af9d3f682ce2cde44a4d37b45c97fa8ac441c1 (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.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | tests/netx/pac/pac-funcs-test.js | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +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. + 2011-03-10 Omair Majid <[email protected]> Replace native launchers with shell scripts 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" ] ]; |