We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2683ed1 commit e74daddCopy full SHA for e74dadd
tests/src/test/scala/actionContainers/BasicActionRunnerTests.scala
@@ -173,7 +173,9 @@ trait BasicActionRunnerTests extends ActionProxyContainerTestUtils {
173
initCode should be(200)
174
val (runCode, out) = c.run(JsObject.empty)
175
runCode should not be (200)
176
- out should be(Some(JsObject("error" -> JsString("The action did not return a dictionary or array."))))
+
177
+ out should (be(Some(JsObject("error" -> JsString("The action did not return a dictionary or array.")))) or be(
178
+ Some(JsObject("error" -> JsString("The action did not return a dictionary.")))))
179
}
180
181
checkStreams(out, err, {
0 commit comments