Skip to content

Commit

Permalink
sanitizer fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
catalinaperalta committed Apr 28, 2021
1 parent 12a8b0b commit 0a6e84b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/internal/testframework/recording.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ type Recording struct {
recorder *recorder.Recorder
src rand.Source
now *time.Time
sanitizer *RecordingSanitizer
Sanitizer *RecordingSanitizer
c TestContext
}

Expand Down Expand Up @@ -104,7 +104,7 @@ func NewRecording(c TestContext, mode RecordMode) (*Recording, error) {
rec.SetMatcher(recording.matchRequest)

// wire up the sanitizer
DefaultSanitizer(rec)
recording.Sanitizer = DefaultSanitizer(rec)

return recording, err
}
Expand Down

0 comments on commit 0a6e84b

Please sign in to comment.