修改测试用例

This commit is contained in:
bryan31
2021-04-04 23:48:56 +08:00
parent f37c6f6462
commit efdec4b948
22 changed files with 67 additions and 44 deletions

View File

@@ -1,6 +1,6 @@
package com.yomahub.liteflow.springboot;
import com.yomahub.liteflow.spring.ComponentScaner;
import com.yomahub.liteflow.spring.ComponentScanner;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@@ -12,7 +12,7 @@ import org.springframework.context.annotation.Configuration;
public class LiteflowComponentScannerAutoConfiguration {
@Bean
public ComponentScaner componentScaner(){
return new ComponentScaner();
public ComponentScanner componentScaner(){
return new ComponentScanner();
}
}