Skip to content

Commit

Permalink
Ignore service message of Vodafone (#250)
Browse files Browse the repository at this point in the history
Closes #249
  • Loading branch information
mueller-ma authored Nov 5, 2023
1 parent 58fc75b commit 3e49d75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ class NoBalanceParser : AbstractParser("Response without balance") {

companion object {
private val NO_BALANCE_START = listOf(
"Tu solicitud no puede ser tramitada en este momento"
"Tu solicitud no puede ser tramitada en este momento",
"Dieser Service steht auf Grund von Wartungsarbeiten leider erst"
)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ class ResponseParserTest {
null,
"",
"foobar",
"Tu solicitud no puede ser tramitada en este momento. Por favor vuelve a ingresar llamando al *888#"
"Tu solicitud no puede ser tramitada en este momento. Por favor vuelve a ingresar llamando al *888#",
"Dieser Service steht auf Grund von Wartungsarbeiten leider erst ab 9 Uhr wieder zur Verfügung."
).forEach { message ->
assertNull(ResponseParser.getBalance(message))
}
Expand Down

0 comments on commit 3e49d75

Please sign in to comment.