Fix failing test

This commit is contained in:
Kris De Volder
2016-12-21 21:06:28 -08:00
parent 078bad08e4
commit cd16c4eaca

View File

@@ -575,8 +575,10 @@ public class PipelineYamlEditorTest {
" resources: [git-repo, build-artefact, not-a-resource]"
);
editor.assertProblems("bogus-job|does not exist");
editor.assertProblems("not-a-resource|does not exist");
editor.assertProblems(
"bogus-job|does not exist",
"not-a-resource|does not exist"
);
}
@Test