Skip to content

Commit

Permalink
Why shutting down twice?
Browse files Browse the repository at this point in the history
  • Loading branch information
SylvainCorlay committed Mar 26, 2021
1 parent 99bae61 commit ccc4cdb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions jupyter_client/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ def test_comm_info(self):

def test_shutdown(self):
kc = self.kc
msg_id = kc.shutdown()
self.assertIsInstance(msg_id, str)
# Can't shut down twice?
#msg_id = kc.shutdown()
#self.assertIsInstance(msg_id, str)
reply = kc.shutdown(reply=True, timeout=TIMEOUT)
self._check_reply('shutdown', reply)

0 comments on commit ccc4cdb

Please sign in to comment.