You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 19, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: api-editor/backend/src/test/kotlin/com/larsreimann/apiEditor/codegen/ConstructorPythonCodeGeneratorFullPipelineTest.kt
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -710,10 +710,10 @@ class ConstructorPythonCodeGeneratorFullPipelineTest {
710
710
RenameAnnotation("renamedTestClass"),
711
711
)
712
712
testClass.annotations.add(
713
-
MoveAnnotation("movedTestModule"),
713
+
MoveAnnotation("testModule.movedTestModule"),
714
714
)
715
715
// when
716
-
testPackage.transform()
716
+
testPackage.transform("newTestModule")
717
717
val moduleContent = testPackage.modules[0].toPythonCode()
718
718
719
719
// then
@@ -753,6 +753,6 @@ class ConstructorPythonCodeGeneratorFullPipelineTest {
Copy file name to clipboardExpand all lines: api-editor/backend/src/test/kotlin/com/larsreimann/apiEditor/codegen/FunctionPythonCodeGeneratorFullPipelineTest.kt
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -638,10 +638,10 @@ class FunctionPythonCodeGeneratorFullPipelineTest {
638
638
),
639
639
)
640
640
testFunction.annotations.add(
641
-
MoveAnnotation("movedTestModule"),
641
+
MoveAnnotation("testModule.movedTestModule"),
642
642
)
643
643
// when
644
-
testPackage.transform()
644
+
testPackage.transform("newTestModule")
645
645
val moduleContent = testPackage.modules[0].toPythonCode()
646
646
647
647
// then
@@ -677,7 +677,7 @@ class FunctionPythonCodeGeneratorFullPipelineTest {
0 commit comments