Skip to content

Commit 59eb0e2

Browse files
committed
test for SSL error on linux (issue #1246)
1 parent bc1f9f5 commit 59eb0e2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/tst_dap.py

+3
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ def runTest(self):
3535
ncfile = netCDF4.Dataset(URL_https)
3636
assert(ncfile['sst'].long_name=='Sea Surface Temperature')
3737
ncfile.close()
38+
# check for SSL error on linux (issue #1246)
39+
ncfile=Dataset('https://icdc.cen.uni-hamburg.de/thredds/dodsC/ftpthredds/hamtide//m2.hamtide11a.nc')
40+
3841

3942
if __name__ == '__main__':
4043
unittest.main()

0 commit comments

Comments
 (0)