This commit is contained in:
bel
2023-10-24 21:09:02 -06:00
parent 21fed9437f
commit 5d0e7c9a3d
9 changed files with 42 additions and 40 deletions

View File

@@ -11,8 +11,8 @@ func TestDelta(t *testing.T) {
if delta.Date != d {
t.Error(delta.Date)
}
if delta.Account != "name" {
t.Error(delta.Account)
if delta.Name != "name" {
t.Error(delta.Name)
}
if delta.Value != 34.56 {
t.Error(delta.Value)
@@ -29,8 +29,8 @@ func TestDelta(t *testing.T) {
if combined.Date != d2 {
t.Error(combined.Date)
}
if combined.Account != "name" {
t.Error(combined.Account)
if combined.Name != "name" {
t.Error(combined.Name)
}
if combined.Value != 45.67 {
t.Error(combined.Value)