You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by xi...@apache.org on 2021/01/08 06:51:44 UTC

[shardingsphere] branch master updated: Fixes test errors (#8948)

This is an automated email from the ASF dual-hosted git repository.

xiaoyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git


The following commit(s) were added to refs/heads/master by this push:
     new b173510  Fixes test errors (#8948)
b173510 is described below

commit b17351060a9a8ce989eebc094f572a8fa982b520
Author: Haoran Meng <me...@gmail.com>
AuthorDate: Fri Jan 8 14:51:20 2021 +0800

    Fixes test errors (#8948)
---
 .../apache/shardingsphere/governance/core/config/ConfigCenterTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/shardingsphere-governance/shardingsphere-governance-core/src/test/java/org/apache/shardingsphere/governance/core/config/ConfigCenterTest.java b/shardingsphere-governance/shardingsphere-governance-core/src/test/java/org/apache/shardingsphere/governance/core/config/ConfigCenterTest.java
index bdd225d..3aed784 100644
--- a/shardingsphere-governance/shardingsphere-governance-core/src/test/java/org/apache/shardingsphere/governance/core/config/ConfigCenterTest.java
+++ b/shardingsphere-governance/shardingsphere-governance-core/src/test/java/org/apache/shardingsphere/governance/core/config/ConfigCenterTest.java
@@ -511,7 +511,7 @@ public final class ConfigCenterTest {
         RuleConfigurationsPersistEvent event = new RuleConfigurationsPersistEvent("sharding_db", createRuleConfigurations());
         ConfigCenter configCenter = new ConfigCenter(configurationRepository);
         configCenter.renew(event);
-        verify(configurationRepository).persist(startsWith("/metadata/sharding_db/rule/cache"), anyString());
+        verify(configurationRepository).persist(startsWith("/metadata/sharding_db/rule"), anyString());
     }
     
     @Test