Skip to content

Commit

Permalink
rename some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fluency03 committed May 9, 2018
1 parent a53f25c commit 62d441d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class BlockPoolActorTest extends TestKit(ActorSystem("BlocksActorTest")) with De
val blockPoolActor: ActorRef = system.actorOf(Props[BlockPoolActor], BLOCK_POOL_ACTOR_NAME)
val txPoolActor: ActorRef = system.actorOf(Props[TxPoolActor], TX_POOL_ACTOR_NAME)

"A BlocksActor" should {
"A BlockPoolActor" should {
"Respond with a Seq of Blocks." in {
BlockPoolActor.props shouldEqual Props[BlockPoolActor]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class PeerActorTest extends TestKit(ActorSystem("PeerActorTest")) with ImplicitS

val peerActor: ActorRef = system.actorOf(Props[PeerActor])

"A BlocksActor" should {
"A PeerActor" should {
"Respond with a Seq of Blocks." in {
PeerActor.props shouldEqual Props[PeerActor]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class TxPoolActorTest extends TestKit(ActorSystem("TransactionsActorTest")) with

val txPoolActor: ActorRef = system.actorOf(Props[TxPoolActor])

"A TransactionsActor" should {
"A TxPoolActor" should {
"Respond with a Seq of Transactions." in {
TxPoolActor.props shouldEqual Props[TxPoolActor]

Expand Down

0 comments on commit 62d441d

Please sign in to comment.