Skip to content

Commit

Permalink
forgot to save and commit this file in my last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
xoba committed Feb 7, 2023
1 parent a050f1a commit 1432703
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions randoption_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func TestRandOption(t *testing.T) {
for _, a := range types {
for _, b := range types {
ha, hb := hashEmailOutput(t, a), hashEmailOutput(t, b)
if a == b && a.Reproducible() {
if a == b && a.IsReproducible() {
if ha != hb {
t.Fatalf("hashes of email buffers differ with %s: %s vs %s", a, ha, hb)
}
Expand All @@ -38,7 +38,7 @@ const (
TimestampSource
)

func (mode ReproducibilityMode) Reproducible() bool {
func (mode ReproducibilityMode) IsReproducible() bool {
switch mode {
case ZeroSource:
return true
Expand Down

0 comments on commit 1432703

Please sign in to comment.