Skip to content

Commit

Permalink
Fix typos in test description
Browse files Browse the repository at this point in the history
  • Loading branch information
miguno committed Jan 16, 2016
1 parent 61de6b4 commit d2f3e7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/scala/com/miguno/akka/testing/VirtualTimeSpec.scala
Expand Up @@ -55,16 +55,16 @@ class VirtualTimeSpec extends FunSpec with Matchers with GivenWhenThen {

}

it("should enforce a minimum advancemet of 1 miliseconds") {
it("should enforce a minimum advancement of 1 miliseconds") {
Given("a time")
val time = new VirtualTime

Then("it will throw an excepiton if time is advanced by less than 1 millisecond")
Then("it will throw an exception if time is advanced by less than 1 millisecond")
intercept[IllegalArgumentException] {
time.advance(0.millis)
}
}

}

}
}

0 comments on commit d2f3e7b

Please sign in to comment.