mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-02-18 21:10:02 +03:00
Fix error in unit test
This commit is contained in:
parent
26eaa843b3
commit
ec9b6aa993
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ class CommandParserTest {
|
||||||
|
|
||||||
private fun test(message: String, expectedResult: ParsedCommand) {
|
private fun test(message: String, expectedResult: ParsedCommand) {
|
||||||
val commandParser = CommandParser()
|
val commandParser = CommandParser()
|
||||||
val result = commandParser.parseSlashCommand(message)
|
val result = commandParser.parseSlashCommand(message,false)
|
||||||
result shouldBeEqualTo expectedResult
|
result shouldBeEqualTo expectedResult
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue