File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/groovy/ru/vyarus/gradle/plugin/python/task Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -67,15 +67,15 @@ class PipModulesInstallTest extends AbstractKitTest {
6767 then : " package install called"
6868 result. task(' :checkPython' ). outcome == TaskOutcome . SUCCESS
6969 result. task(' :pipInstall' ). outcome == TaskOutcome . SUCCESS
70- result. output. replace(' MarkupSafe-2.1.5' , ' MarkupSafe-3.0.2 ' ). contains(' Successfully installed MarkupSafe-3.0.2 boson-0.9' )
70+ result. output. replace(' MarkupSafe-2.1.5' , ' MarkupSafe-3.0.3 ' ). contains(' Successfully installed MarkupSafe-3.0.3 boson-0.9' )
7171 result. output. contains(' boson-0.9' )
7272
7373 when : " second install"
7474 result = run(' pipInstall' )
7575 then : " package not installed"
7676 result. task(' :checkPython' ). outcome == TaskOutcome . SUCCESS
7777 result. task(' :pipInstall' ). outcome == TaskOutcome . SUCCESS // up to date check removed
78- ! result. output. replace(' MarkupSafe-2.1.5' , ' MarkupSafe-3.0.2 ' ). contains(' Successfully installed MarkupSafe-3.0.2 boson-0.9' )
78+ ! result. output. replace(' MarkupSafe-2.1.5' , ' MarkupSafe-3.0.3 ' ). contains(' Successfully installed MarkupSafe-3.0.3 boson-0.9' )
7979 ! result. output. contains(' boson-0.9' )
8080 }
8181
You can’t perform that action at this time.
0 commit comments