Skip to content

Commit

Permalink
fix: 2024.2 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
cvette committed Aug 25, 2024
1 parent 6e85d6b commit 2aa7931
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package de.vette.idea.neos.fusion.codeInsight;

import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase;
import com.intellij.testFramework.fixtures.BasePlatformTestCase;
import com.intellij.usages.Usage;
import util.FusionTestUtils;

import java.util.Collection;

public class FusionCodeInsightTest extends LightJavaCodeInsightFixtureTestCase {
public class FusionCodeInsightTest extends BasePlatformTestCase {

@Override
protected String getTestDataPath() {
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/helpers/NeosProjectDescriptor.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import com.intellij.openapi.module.Module;
import com.intellij.openapi.roots.ContentEntry;
import com.intellij.openapi.roots.ModifiableRootModel;
import com.intellij.testFramework.fixtures.DefaultLightProjectDescriptor;
import com.intellij.testFramework.LightProjectDescriptor;

import de.vette.idea.neos.Settings;

Expand All @@ -12,7 +12,7 @@
/**
* Enable the Neos Project plugin
*/
public class NeosProjectDescriptor extends DefaultLightProjectDescriptor {
public class NeosProjectDescriptor extends LightProjectDescriptor {
@Override
public void configureModule(@NotNull Module module, @NotNull ModifiableRootModel model, @NotNull ContentEntry contentEntry) {
super.configureModule(module, model, contentEntry);
Expand Down

0 comments on commit 2aa7931

Please sign in to comment.