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
Based on the tests in extendeddatacrossword_test.go, the desired behavior is that setCell is able to overwrite cells with nil (see here)so going with Option A.
Context
rsmt2d/extendeddatacrossword_test.go
Line 209 in 2557620
Problem
After #172
setCell
may return an error and indeed does when trying to overwrite a cell withnil
. This means an error is going undetected in the test.Proposal
Option A
Revert
setCell
to not perform input validation.Option B
Check the the return value of
setCell
in the test. Fail the test if an error is observed.Follow ups
#204
The text was updated successfully, but these errors were encountered: