Skip to content

Commit

Permalink
JGiven-10: fix first test
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Oertel <christian.oertel@partner.bmwgroup.com>
  • Loading branch information
Christian Oertel committed Sep 20, 2024
1 parent 58756dc commit 557fcad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</change-notes>
<vendor email="matthias.klass@tngtech.com" url="http://www.tngtech.com">TNG Technology Consulting GmbH</vendor>

<idea-version since-build="222.3345"/>
<idea-version since-build="242.22855"/>

<depends>com.intellij.modules.java</depends>

Expand Down
4 changes: 3 additions & 1 deletion src/test/java/com/tngtech/jgiven/BaseTestCase.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ abstract class BaseTestCase : LightJavaCodeInsightFixtureTestCase() {
@Throws(Exception::class)
public override fun setUp() {
super.setUp()
libraryTestUtil = LibraryTestUtil(module).addJGiven()
libraryTestUtil = LibraryTestUtil()
libraryTestUtil.setModule(module)
libraryTestUtil = libraryTestUtil.addJGiven()
}

@Throws(Exception::class)
Expand Down

0 comments on commit 557fcad

Please sign in to comment.