File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -213,9 +213,9 @@ private class TestFrameworkConverter : Converter<TestFramework>() {
213213 override fun toString (value : TestFramework ): String = " $value "
214214
215215 override fun fromString (value : String ): TestFramework = when (value) {
216- Junit4 .displayName -> Junit4
217- Junit5 .displayName -> Junit5
218- TestNg .displayName -> TestNg
216+ Junit4 .id -> Junit4
217+ Junit5 .id -> Junit5
218+ TestNg .id -> TestNg
219219 else -> error(" Unknown TestFramework $value " )
220220 }
221221}
@@ -225,8 +225,8 @@ private class StaticsMockingConverter : Converter<StaticsMocking>() {
225225 override fun toString (value : StaticsMocking ): String = " $value "
226226
227227 override fun fromString (value : String ): StaticsMocking = when (value) {
228- NoStaticMocking .displayName -> NoStaticMocking
229- MockitoStaticMocking .displayName -> MockitoStaticMocking
228+ NoStaticMocking .id -> NoStaticMocking
229+ MockitoStaticMocking .id -> MockitoStaticMocking
230230 else -> error(" Unknown StaticsMocking $value " )
231231 }
232232}
You can’t perform that action at this time.
0 commit comments