Skip to content

Commit

Permalink
Clean up code
Browse files Browse the repository at this point in the history
  • Loading branch information
aplotnikov committed Nov 9, 2018
1 parent a4fbc47 commit ad92c48
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ class ReactorFileProcessorSpec extends Specification {
given:
PollingConditions conditions = new PollingConditions(timeout: 12)
and:
List<Long> clientsFromDbFile = (1..5)
List<Long> clientsFromDbFile = 1..5
String fileFromDb = generateFile(clientsFromDbFile)
and:
List<Long> clientsFromQueueFile = (11..15)
List<Long> clientsFromQueueFile = 11..15
String fileFromQueue = generateFile(clientsFromQueueFile)
and:
db.readAll() >> Flux.just(new FileReceived(fileFromDb))
Expand Down

0 comments on commit ad92c48

Please sign in to comment.