Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tpasternak committed Oct 3, 2024
1 parent 46f723c commit 22946f9
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,9 @@ public File decode(ArtifactLocation artifactLocation) {
intellijRule.registerProjectService(ProjectViewManager.class, projectViewManager);

intellijRule.registerApplicationService(BlazeExecutor.class, new MockBlazeExecutor());
intellijRule.registerExtensionPoint(BuildSystemProvider.EP_NAME, BuildSystemProvider.class).registerExtension(new BazelBuildSystemProvider());

intellijRule.registerExtensionPoint(BuildSystemProvider.EP_NAME, BuildSystemProvider.class)
intellijRule.registerExtension(BuildSystemProvider.EP_NAME, new BazelBuildSystemProvider());
setupProjectData();
setProjectView(
"directories:",
Expand Down

0 comments on commit 22946f9

Please sign in to comment.