From bf50a03070254bd13301543db01199fb69966fa1 Mon Sep 17 00:00:00 2001 From: Luke Imhoff Date: Wed, 19 Dec 2018 13:39:02 -0600 Subject: [PATCH] Change RollingWindowTest to async: false The same named process is used for all tests and they use the same key, so they interfere with each other. --- .../test/ethereum_jsonrpc/rolling_window_test.exs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/ethereum_jsonrpc/test/ethereum_jsonrpc/rolling_window_test.exs b/apps/ethereum_jsonrpc/test/ethereum_jsonrpc/rolling_window_test.exs index 8606227f3f..25b7e41382 100644 --- a/apps/ethereum_jsonrpc/test/ethereum_jsonrpc/rolling_window_test.exs +++ b/apps/ethereum_jsonrpc/test/ethereum_jsonrpc/rolling_window_test.exs @@ -1,5 +1,7 @@ defmodule EthereumJSONRPC.RollingWindowTest do - use ExUnit.Case, async: true + use ExUnit.Case, + # The same named process is used for all tests and they use the same key in the table, so they would interfere + async: false alias EthereumJSONRPC.RollingWindow