Skip to content

Commit

Permalink
Fix Idv::Proofer vendor initialization
Browse files Browse the repository at this point in the history
**Why**:
We want to start with the right set of vendors for
proofing.

**How**:
We initialize `@vendor` to `nil` rather than a truthy
value.
  • Loading branch information
jgsmith-usds committed Aug 28, 2018
1 parent cccd9ed commit 7db3c4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/idv/proofer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module Proofer

STAGES = %i[resolution state_id address].freeze

@vendors = {}
@vendors = nil

class << self
def attribute?(key)
Expand Down

0 comments on commit 7db3c4e

Please sign in to comment.