Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mirrors
biopet.biopet
Commits
8d4a3559
Commit
8d4a3559
authored
Mar 15, 2017
by
Peter van 't Hof
Browse files
Fix format
parent
08560e40
Changes
1
Hide whitespace changes
Inline
Side-by-side
biopet-core/src/test/scala/nl/lumc/sasc/biopet/core/summary/WriteSummaryTest.scala
View file @
8d4a3559
...
...
@@ -48,11 +48,11 @@ class WriteSummaryTest extends TestNGSuite with Matchers {
val
outputDir
=
new
File
(
"/tmp"
)
Await
.
ready
(
WriteSummary
.
createFile
(
db
,
0
,
0
,
Some
(
0
),
Some
(
0
),
Some
(
0
),
"test"
,
new
File
(
outputDir
,
"test.tsv"
),
outputDir
),
Duration
.
Inf
)
val
file
=
Await
.
result
(
db
.
getFile
(
0
,
0
,
0
,
0
,
0
,
"test"
),
Duration
.
Inf
)
val
file
=
Await
.
result
(
db
.
getFile
(
0
,
0
,
0
,
0
,
0
,
"test"
),
Duration
.
Inf
)
file
.
map
(
_
.
path
)
shouldBe
Some
(
"./test.tsv"
)
Await
.
ready
(
WriteSummary
.
createFile
(
db
,
0
,
0
,
Some
(
0
),
Some
(
0
),
Some
(
0
),
"test"
,
new
File
(
"/tmp2/test.tsv"
),
outputDir
),
Duration
.
Inf
)
val
file2
=
Await
.
result
(
db
.
getFile
(
0
,
0
,
0
,
0
,
0
,
"test"
),
Duration
.
Inf
)
val
file2
=
Await
.
result
(
db
.
getFile
(
0
,
0
,
0
,
0
,
0
,
"test"
),
Duration
.
Inf
)
file2
.
map
(
_
.
path
)
shouldBe
Some
(
"/tmp2/test.tsv"
)
db
.
close
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment