Skip to content

Commit

Permalink
Making tests green with a new csv header
Browse files Browse the repository at this point in the history
  • Loading branch information
foralost committed Feb 20, 2024
1 parent 87f51d8 commit 7f6f6ed
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,9 @@ class HabitListTest : BaseUnitTest() {
list.add(h2)
val expectedCSV =
"""
Position,Name,Question,Description,NumRepetitions,Interval,Color
001,Meditate,Did you meditate this morning?,this is a test description,1,1,#FF8F00
002,Wake up early,Did you wake up before 6am?,,2,3,#AFB42B
Position,Name,Question,Description,NumRepetitions,Interval,Color,Unit,Target Type,Target Value
001,Meditate,Did you meditate this morning?,this is a test description,1,1,#FF8F00,,AT_LEAST,0.0
002,Wake up early,Did you wake up before 6am?,,2,3,#AFB42B,,AT_LEAST,0.0
""".trimIndent()
val writer = StringWriter()
Expand Down

0 comments on commit 7f6f6ed

Please sign in to comment.