Skip to content

Commit

Permalink
chore(decrypt): add name in test case
Browse files Browse the repository at this point in the history
  • Loading branch information
iyear committed Oct 30, 2023
1 parent 4c34464 commit 1181990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decrypt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func TestDecryptMP4(t *testing.T) {
buf := bytes.NewBuffer(nil)

err := DecryptMP4(bytes.NewReader(readFile(tt.input)), decodeHex(t, tt.key), buf)
require.NoError(t, err)
require.NoError(t, err, tt.name)

assert.Equal(t, readFile(tt.expected), buf.Bytes(), tt.name)
}
Expand Down

0 comments on commit 1181990

Please sign in to comment.