Skip to content

Commit a5aa816

Browse files
authored
Merge pull request #47 from AlexMcConnell/master
Fixing the EvictionSearch api url.
2 parents f343618 + 8f869e6 commit a5aa816

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/checkr/eviction_search.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class EvictionSearch < APIResource
99
api_class_method :retrieve, :get, ":path/:id", :arguments => [:id]
1010

1111
def self.path
12-
"/v1/evictions"
12+
"/v1/eviction_searches"
1313
end
1414

1515
APIClass.register_subclass(self, "eviction_search")

test/checkr/eviction_search_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module Checkr
44
class EvictionSearchTest < Test::Unit::TestCase
55
setup do
6-
@eviction_search_url = "#{Checkr.api_base}/v1/evictions"
6+
@eviction_search_url = "#{Checkr.api_base}/v1/eviction_searches"
77
end
88

99
context 'EvictionSearch class' do

0 commit comments

Comments
 (0)