Skip to content

Commit

Permalink
chore: uncomment out tests (celestiaorg#1015)
Browse files Browse the repository at this point in the history
## Overview

apparently we forgot to un-comment some important tests

## Checklist

- [x] New and updated code has appropriate documentation
- [x] New and updated code has new and/or updated testing
- [x] Required CI checks are passing
- [x] Visual proof for any user facing features like CLI or
documentation updates
- [x] Linked issues closed with keywords
  • Loading branch information
evan-forbes authored and rach-id committed Nov 17, 2022
1 parent d7b9353 commit 44abd13
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkg/shares/shares_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,12 +180,12 @@ func TestMerge(t *testing.T) {

tests := []test{
{"one of each random small size", 1, 1, 1, 40},
// {"one of each random large size", 1, 1, 1, 400},
// {"many of each random large size", 10, 10, 10, 40},
// {"many of each random large size", 10, 10, 10, 400},
// {"only transactions", 10, 0, 0, 400},
// {"only evidence", 0, 10, 0, 400},
// {"only messages", 0, 0, 10, 400},
{"one of each random large size", 1, 1, 1, 400},
{"many of each random large size", 10, 10, 10, 40},
{"many of each random large size", 10, 10, 10, 400},
{"only transactions", 10, 0, 0, 400},
{"only evidence", 0, 10, 0, 400},
{"only messages", 0, 0, 10, 400},
}

for _, tc := range tests {
Expand Down

0 comments on commit 44abd13

Please sign in to comment.