File tree 2 files changed +2
-2
lines changed
elasticsearch-persistence
lib/elasticsearch/persistence/model
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ module Utils
70
70
def lookup_type ( type )
71
71
case
72
72
when type == String
73
- 'string '
73
+ 'text '
74
74
when type == Integer
75
75
'integer'
76
76
when type == Float
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ def run!; DummyGatewayModel.gateway { |g| @b += 1 }; end
70
70
end
71
71
72
72
should "properly look up types for classes" do
73
- assert_equal 'string' , Elasticsearch ::Persistence ::Model ::Utils ::lookup_type ( String )
73
+ assert_equal 'text' , Elasticsearch ::Persistence ::Model ::Utils ::lookup_type ( String )
74
74
assert_equal 'integer' , Elasticsearch ::Persistence ::Model ::Utils ::lookup_type ( Integer )
75
75
assert_equal 'float' , Elasticsearch ::Persistence ::Model ::Utils ::lookup_type ( Float )
76
76
assert_equal 'date' , Elasticsearch ::Persistence ::Model ::Utils ::lookup_type ( Date )
You can’t perform that action at this time.
0 commit comments