A fork of Simple Time Tracker with WearOS support. (Now integrated upstream)
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: Remove `name` from `CurrentActivity` in tests

The `name` parameter no longer exists on the DTO, so it was
breaking the tests.

Joseph Hale (Feb 26, 2024, 10:23 PM -0700) 86ab0ef2 e337822c

-3
-3
wearrpc/src/test/java/com/example/util/simpletimetracker/wearrpc/WearRPCTest.kt
··· 99 99 val activities = arrayOf( 100 100 CurrentActivity( 101 101 42, 102 - "Activities", 103 102 jan_31_2024_afternoon, 104 103 arrayOf(Tag(1, "Friends"), Tag(2, "Family")), 105 104 ), ··· 116 115 val activities = arrayOf( 117 116 CurrentActivity( 118 117 42, 119 - "Activities", 120 118 jan_31_2024_afternoon, 121 119 arrayOf(Tag(1, "Friends"), Tag(2, "Family")), 122 120 ), 123 121 CurrentActivity( 124 122 42, 125 - "Chores", 126 123 jan_31_2024_evening, 127 124 arrayOf(Tag(5, "Shopping")), 128 125 ),