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.
pull/1260/head
Luke Imhoff 6 years ago
parent 2b60cba8a1
commit bf50a03070
  1. 4
      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

Loading…
Cancel
Save