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
FSL
fslpy
Commits
7a1bf04e
Commit
7a1bf04e
authored
May 03, 2018
by
Paul McCarthy
🚵
Browse files
TEST: Fixed broken assumptions (see previous commit)
parent
801b6b7c
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/test_atlasq_ohi.py
View file @
7a1bf04e
...
...
@@ -155,8 +155,8 @@ def test_mask(seed):
exp
=
[]
for
lbl
,
prop
in
zip
(
labels
,
props
):
exp
.
append
(
'{}:{:0.4f}'
.
format
(
desc
.
labels
[
int
(
lbl
)
]
.
name
,
prop
))
name
=
desc
.
find
(
value
=
int
(
lbl
)
)
.
name
exp
.
append
(
'{}:{:0.4f}'
.
format
(
name
,
prop
))
return
'
\n
'
.
join
(
exp
)
...
...
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