File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ func TestDeterminism(t *testing.T) {
3939 }
4040
4141 if ! bytes .Equal (b1 , b2 ) {
42- t .Fatalf ("determinism failed: outputs differ" )
42+ t .Fatal ("determinism failed: outputs differ" )
4343 }
4444}
4545
@@ -50,7 +50,7 @@ func TestCollisionDetection(t *testing.T) {
5050
5151 _ , err := TransformMany ([]ChannelSnapshot {s1 , s2 })
5252 if err == nil {
53- t .Fatalf ("expected collision error, got nil" )
53+ t .Fatal ("expected collision error, got nil" )
5454 }
5555 if ! errors .Is (err , ErrNamespaceCollision ) {
5656 t .Fatalf ("expected ErrNamespaceCollision, got: %v" , err )
@@ -159,6 +159,6 @@ func TestDuplicateNamespaceMerge(t *testing.T) {
159159 t .Fatalf ("json write failed: %v" , err )
160160 }
161161 if ! bytes .Equal (b1 , b2 ) {
162- t .Fatalf ("determinism failed for merged namespace: outputs differ" )
162+ t .Fatal ("determinism failed for merged namespace: outputs differ" )
163163 }
164164}
You can’t perform that action at this time.
0 commit comments