Skip to content

Commit

Permalink
Merge pull request #186 from ngoulongkam/fix-incorrect-data
Browse files Browse the repository at this point in the history
Fix incorrect data that was changed by accident
  • Loading branch information
maruthi-thammineni authored Mar 15, 2021
2 parents 3ba36bd + 2c213cb commit d094627
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,40 +127,40 @@ object NSIGetTransactionsBehaviour {
"C",
"Debit card online deposit",
"B8C29ZY4A00A0018",
LocalDate.of(2020, 11, 7),
LocalDate.of(2020, 11, 7)),
LocalDate.of(2017, 11, 7),
LocalDate.of(2017, 11, 7)),
Transaction(
"2",
"50.00",
"C",
"Debit card online deposit",
"B8C29ZY4A00A0018",
LocalDate.of(2020, 12, 9),
LocalDate.of(2020, 12, 9)),
LocalDate.of(2017, 12, 9),
LocalDate.of(2017, 12, 9)),
Transaction(
"3",
"50.00",
"C",
"Debit card online deposit",
"B8C29ZY4A00A0018",
LocalDate.of(2021, 1, 16),
LocalDate.of(2021, 1, 16)),
LocalDate.of(2018, 1, 16),
LocalDate.of(2018, 1, 16)),
Transaction(
"4",
"50.00",
"C",
"Debit card online deposit",
"B8C29ZY4A00A0018",
LocalDate.of(2021, 2, 3),
LocalDate.of(2021, 2, 3)),
LocalDate.of(2018, 2, 3),
LocalDate.of(2018, 2, 3)),
Transaction(
"5",
"50.00",
"C",
"Debit card online deposit",
"B8C29ZY4A00A0018",
LocalDate.of(2021, 3, 1),
LocalDate.of(2021, 3, 1))
LocalDate.of(2018, 3, 1),
LocalDate.of(2018, 3, 1))
)
val peteTransaction: List[Transaction] = List[Transaction](
Transaction(
Expand Down

0 comments on commit d094627

Please sign in to comment.