fixed deprecated method in getting started guide (#26083)

This commit is contained in:
Aleksei Molokovskikh 2018-12-10 13:45:24 +03:00 committed by Christopher Batey
parent 9f102813b6
commit 4fe5b1cb59

View file

@ -27,10 +27,10 @@ class DeviceSpec extends AkkaSpec {
val deviceActor = system.actorOf(Device.props("group", "device"))
deviceActor.tell(DeviceManager.RequestTrackDevice("wrongGroup", "device"), probe.ref)
probe.expectNoMsg(500.milliseconds)
probe.expectNoMessage(500.milliseconds)
deviceActor.tell(DeviceManager.RequestTrackDevice("group", "Wrongdevice"), probe.ref)
probe.expectNoMsg(500.milliseconds)
probe.expectNoMessage(500.milliseconds)
}
//#device-registration-tests