Testing Norbert's add-all-future branch.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2020-07-26 13:23:45 -05:00
parent ecd5bdbf2a
commit 5ad652f25b
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ BaselineOfBrea >> baseline: spec [
spec
baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON/repository' ];
baseline: 'Mustache' with: [ spec repository: 'github://noha/mustache/repository' ];
baseline: 'TaskIt' with: [ spec repository: 'github://pharo-contributions/taskit' ].
baseline: 'TaskIt' with: [ spec repository: 'github://noha/taskit:add-all-future' ].
"Packages"
spec package: 'Brea' with: [ spec requires: #('NeoJSON' 'Mustache' 'TaskIt') ].

View File

@ -54,7 +54,7 @@ BreaWikiPage >> populateBodyAs: key [
| allActions result |
allActions := TKTFuture all: {
[self bodyContentsAsHTML] future.
[ self templateData at: key put: FileLocator temp / 'wikiPage.html' contents ]
[ self templateData at: key put: FileLocator temp / 'wikiPage.html' contents ] future
}.
allActions onSuccessDo: [ :values |
result := values ].