fixed deprecated method in getting started guide (#26083)
This commit is contained in:
parent
9f102813b6
commit
4fe5b1cb59
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue