Skip to content

Commit

Permalink
Add build.yml fix range cache
Browse files Browse the repository at this point in the history
  • Loading branch information
vharseko committed Mar 19, 2024
1 parent 75eb1ac commit e933504
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
import org.identityconnectors.testconnector.TstConnector;
import org.testng.Assert;
import org.testng.ITestContext;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;

public class AsyncLocalConnectorInfoManagerTest extends
Expand All @@ -55,7 +56,8 @@ protected ConnectorFrameworkFactory getConnectorFrameworkFactory() throws Except
return internalFrameworkFactory;
}

protected void setupClass(ITestContext context) throws Exception {
@BeforeClass
public void setupClass(ITestContext context) throws Exception {
getConnectorFramework().getLocalManager().addConnectorBundle(
TstConnector.class.getProtectionDomain().getCodeSource().getLocation());
}
Expand Down

0 comments on commit e933504

Please sign in to comment.