diff options
author | 6092002067 <wu.youbo@zte.com.cn> | 2017-03-24 11:17:32 +0800 |
---|---|---|
committer | 6092002067 <wu.youbo@zte.com.cn> | 2017-03-24 15:35:29 +0800 |
commit | 40f54b8acefce59ecbd9e9fde60e062373243982 (patch) | |
tree | b048db2b81089ebf7ebdd6493274de657f4c6367 /rulemgt/src/test/java | |
parent | 3f7413a52908cc06c4a0b91df6f9a219a06ff11d (diff) |
Fix modify rules of faultv2.0.0release/mercury
Issue-ID: HOLMES-52
Change-Id: I93115414570d118f4a1d88c2b1a612d4a44d2811
Signed-off-by: youbowu <wu.youbo@zte.com.cn>
Diffstat (limited to 'rulemgt/src/test/java')
-rw-r--r-- | rulemgt/src/test/java/org/openo/holmes/rulemgt/bolt/enginebolt/EngineWrapperTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rulemgt/src/test/java/org/openo/holmes/rulemgt/bolt/enginebolt/EngineWrapperTest.java b/rulemgt/src/test/java/org/openo/holmes/rulemgt/bolt/enginebolt/EngineWrapperTest.java index fe7696b..38afa47 100644 --- a/rulemgt/src/test/java/org/openo/holmes/rulemgt/bolt/enginebolt/EngineWrapperTest.java +++ b/rulemgt/src/test/java/org/openo/holmes/rulemgt/bolt/enginebolt/EngineWrapperTest.java @@ -129,7 +129,7 @@ public class EngineWrapperTest { @Test
public void deleteRuleFromEngine_http_status_not_ok() throws Exception {
thrown.expect(CorrelationException.class);
- thrown.expectMessage(I18nProxy.ENGINE_DELETE_RULE_FAILED);
+ thrown.expectMessage(I18nProxy.RULE_MANAGEMENT_DELETE_RULE_FAILED);
EasyMock.expect(engineServiceMock.delete(EasyMock.anyObject(String.class)))
.andReturn(response);
|