File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/test/groovy/ru/mystamps/web/service Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -315,7 +315,7 @@ class SeriesInfoExtractorServiceImplTest extends Specification {
315
315
316
316
def ' extractQuantity() should return null when fragment is null, empty or blank' () {
317
317
expect :
318
- service. extractQuantity(nullOrBlank()) == null
318
+ service. extractQuantity(nullOrBlank()) == null
319
319
}
320
320
321
321
def ' extractQuantity() should return null for invalid price' () {
@@ -324,6 +324,7 @@ class SeriesInfoExtractorServiceImplTest extends Specification {
324
324
}
325
325
326
326
@Unroll
327
+ @SuppressWarnings (' UnnecessaryBooleanExpression' )
327
328
def ' extractQuantity() should extract quantity from "#fragment"' (String fragment, Integer expectedQuantity) {
328
329
expect :
329
330
service. extractQuantity(fragment) == expectedQuantity
You can’t perform that action at this time.
0 commit comments