diff options
author | Kyle Kelley <rgbkrk@gmail.com> | 2024-07-27 01:39:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-27 10:39:08 +0200 |
commit | 63f8218a7d9c70b214408c951b9cf038403a9229 (patch) | |
tree | 3fb9512b913e42913aaaeab31cb17d38a8594d65 /tests/integration/jupyter_tests.rs | |
parent | 06b6352292b69359768c99a1fc984fa4bdcd07c9 (diff) |
fix: adapt to new jupyter runtime API and include session IDs (#24762)
Closes #24737, #24437.
Diffstat (limited to 'tests/integration/jupyter_tests.rs')
-rw-r--r-- | tests/integration/jupyter_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/jupyter_tests.rs b/tests/integration/jupyter_tests.rs index e0733d5a3..1b2c21311 100644 --- a/tests/integration/jupyter_tests.rs +++ b/tests/integration/jupyter_tests.rs @@ -493,7 +493,7 @@ async fn jupyter_heartbeat_echoes() -> Result<()> { let (_ctx, client, _process) = setup().await; client.send_heartbeat(b"ping").await?; let msg = client.recv_heartbeat().await?; - assert_eq!(msg, Bytes::from_static(b"ping")); + assert_eq!(msg, Bytes::from_static(b"pong")); Ok(()) } |