Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
4115740b
Commit
4115740b
authored
Oct 07, 2021
by
Piotr Gawron
Browse files
vmh started returning 500 Internal Server Error for our test query
parent
24eaaa4e
Pipeline
#48033
passed with stage
in 14 minutes and 11 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
annotation/src/test/java/lcsb/mapviewer/annotation/services/annotators/ReconAnnotatorTest.java
View file @
4115740b
...
...
@@ -149,11 +149,11 @@ public class ReconAnnotatorTest extends AnnotationTestFunctions {
@Test
public
void
testAnnotatingForOxygen
()
throws
Exception
{
SimpleMolecule
molecule
=
new
SimpleMolecule
(
"id"
);
molecule
.
setName
(
"o
2
"
);
molecule
.
setName
(
"
h2
o"
);
reconAnnotator
.
annotateElement
(
molecule
);
assertTrue
(
molecule
.
getMiriamData
().
size
()
>
0
);
assertEquals
(
0
,
getWarnings
().
size
());
assertEquals
(
"O
2
"
,
molecule
.
getFormula
());
assertEquals
(
"
H2
O"
,
molecule
.
getFormula
());
}
@Test
...
...
Write
Preview
Markdown
is supported
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