Skip to content

Commit

Permalink
Extend globus module deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
k1o0 committed Nov 6, 2023
1 parent 166c4c5 commit 262bb75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ibllib/tests/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def setUp(self):
self.addCleanup(self.patcher.stop)

def test_as_globus_path(self):
assert datetime.now() < datetime(2023, 10, 30)
assert datetime.now() < datetime(2024, 1, 30), 'remove deprecated module'
# A Windows path
if sys.platform == 'win32':
# "/E/FlatIron/integration"
Expand All @@ -381,7 +381,7 @@ def test_as_globus_path(self):

@unittest.mock.patch('iblutil.io.params.read')
def test_login_auto(self, mock_params):
assert datetime.now() < datetime(2023, 10, 30)
assert datetime.now() < datetime(2024, 1, 30), 'remove deprecated module'
client_id = 'h3u2ier'
# Test ValueError thrown with incorrect parameters
mock_params.return_value = None # No parameters saved
Expand Down

0 comments on commit 262bb75

Please sign in to comment.