You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert.True(t, envelopeMonth.Data.Spent.Equal(spent), "Month calculation for 2022-01 is wrong: should be %v, but is %v", spent, envelopeMonth.Data.Spent)
assert.True(t, envelopeMonth.Data.Spent.Equal(spent), "Month calculation for 2022-02 is wrong: should be %v, but is %v", spent, envelopeMonth.Data.Spent)
assert.True(t, envelopeMonth.Data.Spent.Equal(spent), "Month calculation for 2022-03 is wrong: should be %v, but is %v", spent, envelopeMonth.Data.Spent)
175
+
test.DecodeResponse(t, &r, &envelopeMonth)
176
+
assert.True(t, envelopeMonth.Data.Spent.Equal(tt.spent), "Monthly spent calculation for 2022-01 is wrong: should be %v, but is %v", tt.spent, envelopeMonth.Data.Spent)
177
+
}
178
+
}
164
179
180
+
funcTestEnvelopeMonthInvalid(t*testing.T) {
165
181
// Test that non-parseable requests produce an error
0 commit comments