Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
update version to 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
youji.zzl committed Sep 26, 2023
1 parent 7d5213b commit 24e2dde
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sofa-serverless-runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<packaging>pom</packaging>

<properties>
<revision>0.3.3</revision>
<revision>0.3.4</revision>
<project.encoding>UTF-8</project.encoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class BizUninstallEventHandlerTest {
private Biz biz;

@Mock
private BizManagerService bizManagerService;
private BizManagerService bizManagerService;

private ConfigurableApplicationContext ctx;

Expand All @@ -67,7 +67,8 @@ public void handleEvent() {
Mockito.when(biz.getBizName()).thenReturn(bizName);
Mockito.when(biz.getBizClassLoader()).thenReturn(this.getClass().getClassLoader());

Mockito.when(bizManagerService.getBizByClassLoader(this.getClass().getClassLoader())).thenReturn(biz);
Mockito.when(bizManagerService.getBizByClassLoader(this.getClass().getClassLoader()))
.thenReturn(biz);

ctx = springApplication.run();

Expand Down

0 comments on commit 24e2dde

Please sign in to comment.