File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 11# Copyright (c) 2016 Will Thames <will@thames.id.au>
2+ # Copyright (c) 2018 The Python GSSAPI Team
23#
34# Permission is hereby granted, free of charge, to any person obtaining a copy
45# of this software and associated documentation files (the "Software"), to deal
1920# THE SOFTWARE.
2021
2122import unittest
23+
2224import urllib_gssapi
2325
2426try :
3032
3133
3234class TestUrls (unittest .TestCase ):
33-
3435 def setUp (self ):
3536 handler = urllib_gssapi .HTTPSPNEGOAuthHandler ()
3637 opener = urllib_request .build_opener (handler )
3738 urllib_request .install_opener (opener )
3839
39- def testGoogle (self ):
40- url = ' https://www.google.com'
41- urllib_request . Request ( url )
40+ def test_non_SPNEGO (self ):
41+ r = urllib_request . urlopen ( " https://mivehind.net/" )
42+ r . read ( )
You can’t perform that action at this time.
0 commit comments