From 63f8218a7d9c70b214408c951b9cf038403a9229 Mon Sep 17 00:00:00 2001 From: Kyle Kelley Date: Sat, 27 Jul 2024 01:39:08 -0700 Subject: fix: adapt to new jupyter runtime API and include session IDs (#24762) Closes #24737, #24437. --- tests/integration/jupyter_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') 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(()) } -- cgit v1.2.3