Commit a5edc3093484db4f09299a31761d9a6cffe05b59
Committed by
Andrew Shvayka
1 parent
d0427074
fix typo
Showing
2 changed files
with
0 additions
and
2 deletions
... | ... | @@ -112,5 +112,4 @@ public abstract class TbAbstractAlarmNode<C extends TbAbstractAlarmNodeConfigura |
112 | 112 | () -> ctx.tellNext(toAlarmMsg(ctx, alarmResult, msg), alarmAction), |
113 | 113 | throwable -> ctx.tellFailure(toAlarmMsg(ctx, alarmResult, msg), throwable)); |
114 | 114 | } |
115 | - | |
116 | 115 | } | ... | ... |
... | ... | @@ -252,7 +252,6 @@ public class TbAlarmNodeTest { |
252 | 252 | |
253 | 253 | verify(ctx).enqueue(any(), successCaptor.capture(), failureCaptor.capture()); |
254 | 254 | successCaptor.getValue().run(); |
255 | - | |
256 | 255 | verify(ctx).tellNext(any(), eq("Updated")); |
257 | 256 | |
258 | 257 | ArgumentCaptor<TbMsg> msgCaptor = ArgumentCaptor.forClass(TbMsg.class); | ... | ... |