Skip to content

Commit

Permalink
Update write_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
suyashkumar authored Sep 29, 2024
1 parent b7b9d26 commit 1de936d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions write_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -965,10 +965,10 @@ func TestWrite_OverrideMissingTransferSyntax(t *testing.T) {
}
}

func MustNewValue(data interface{}) dicom.Value {
func MustNewValue(data interface{}) Value {

Check failure on line 968 in write_test.go

View workflow job for this annotation

GitHub Actions / Benchmark (push)

undefined: dicom
value, err := NewValue(data)
if err != nil {
panic(fmt.Errorf("error writing value: %w", err))
panic(err)

Check failure on line 971 in write_test.go

View workflow job for this annotation

GitHub Actions / Benchmark (push)

undefined: fmt
}

return value
Expand Down

0 comments on commit 1de936d

Please sign in to comment.