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 022a7a2 commit 29b9194Copy full SHA for 29b9194
repl/src/test/scala/org/apache/spark/repl/ReplSuite.scala
@@ -56,13 +56,13 @@ class ReplSuite extends FunSuite {
56
}
57
58
def assertContains(message: String, output: String) {
59
- val isContain=output.contains(message)
+ val isContain = output.contains(message)
60
assert(isContain,
61
"Interpreter output did not contain '" + message + "':\n" + output)
62
63
64
def assertDoesNotContain(message: String, output: String) {
65
66
assert(!isContain,
67
"Interpreter output contained '" + message + "':\n" + output)
68
0 commit comments