Skip to content

Commit

Permalink
Fix uts
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbumenJ committed Mar 12, 2023
1 parent 234f1c6 commit ffb2bbb
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

import java.util.concurrent.locks.Lock;

/**
* {@link ScopeModelUtil}
*/
Expand Down Expand Up @@ -109,6 +111,11 @@ protected void onDestroy() {
public Environment getModelEnvironment() {
return null;
}

@Override
protected Lock acquireDestroyLock() {
return null;
}
}

}

0 comments on commit ffb2bbb

Please sign in to comment.