Skip to content

Commit

Permalink
Fixes tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tjayrush committed Sep 7, 2023
1 parent c880509 commit e66f7e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions src/apps/chifra/pkg/tslib/list_integration_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
//go:build integration
// +build integration

// Copyright 2021 The TrueBlocks Authors. All rights reserved.
// Use of this source code is governed by a license that can
// be found in the LICENSE file.
Expand Down Expand Up @@ -38,7 +35,8 @@ func TestGetSpecials2(t *testing.T) {
t.Error(err)
}

if len(specials) != 39 {
if len(specials) != 42 {
fmt.Println(specials)
t.Error("Wrong number of special blocks ", len(specials), ". Should have 39.")
}

Expand Down
2 changes: 1 addition & 1 deletion src/apps/chifra/pkg/tslib/list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func TestGetSpecials(t *testing.T) {
t.Error(err)
}

if len(specials) != 39 {
if len(specials) != 42 {
t.Error("Wrong number of special blocks ", len(specials), ". Should have 39.")
}

Expand Down

0 comments on commit e66f7e6

Please sign in to comment.