From 25b4043dc731093358e9cb1a4f4a74639aaffe13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Wed, 1 Feb 2023 20:27:54 +0100 Subject: [PATCH] Bump assertion timeout --- test/livebook/session_test.exs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/livebook/session_test.exs b/test/livebook/session_test.exs index 0ec28a407..614178f01 100644 --- a/test/livebook/session_test.exs +++ b/test/livebook/session_test.exs @@ -491,7 +491,7 @@ defmodule Livebook.SessionTest do send(session.pid, {:runtime_file_lookup, self(), new_file_ref}) assert_receive {:runtime_file_lookup_reply, {:ok, new_path}} - Process.sleep(10) + Process.sleep(50) refute File.exists?(old_path) assert File.exists?(new_path) @@ -524,7 +524,7 @@ defmodule Livebook.SessionTest do send(client_pid, :stop) - Process.sleep(10) + Process.sleep(50) refute File.exists?(path) end @@ -564,7 +564,7 @@ defmodule Livebook.SessionTest do Session.erase_outputs(session.pid) - Process.sleep(10) + Process.sleep(50) refute File.exists?(path) end