Skip to content

Commit 2359999

Browse files
committed
fix tests
1 parent 8c6fca2 commit 2359999

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/groovy/ru/vyarus/gradle/plugin/python/task/PipModulesInstallTest.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)