Skip to content

Commit

Permalink
Make tests async false
Browse files Browse the repository at this point in the history
  • Loading branch information
nsweeting committed Oct 8, 2019
1 parent 686c0bd commit ef8eb1a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/connection_test.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Rabbit.ConnectionTest do
use ExUnit.Case
use ExUnit.Case, async: false

alias Rabbit.Connection

Expand Down
2 changes: 1 addition & 1 deletion test/consumer_supervisor_test.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Rabbit.ConsumerSupervisorTest do
use ExUnit.Case
use ExUnit.Case, async: false

alias Rabbit.{Connection, ConsumerSupervisor}

Expand Down
2 changes: 1 addition & 1 deletion test/consumer_test.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Rabbit.ConsumerTest do
use ExUnit.Case
use ExUnit.Case, async: false

alias Rabbit.{Connection, Consumer, Producer}

Expand Down
2 changes: 1 addition & 1 deletion test/initializer_test.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Rabbit.InitializerTest do
use ExUnit.Case
use ExUnit.Case, async: false

alias Rabbit.{Connection, Consumer, Initializer, Producer}

Expand Down
2 changes: 1 addition & 1 deletion test/producer_test.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Rabbit.ProducerTest do
use ExUnit.Case
use ExUnit.Case, async: false

alias Rabbit.{Connection, Producer}

Expand Down

0 comments on commit ef8eb1a

Please sign in to comment.