Skip to content

Commit

Permalink
Merge pull request #331 from RavirajBaraiya/matchtype_dont_use
Browse files Browse the repository at this point in the history
 modified TestDSUtil
  • Loading branch information
sonalgoyal authored Jun 14, 2022
2 parents d521091 + 574c47f commit b2e71b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/test/java/zingg/util/TestDSUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void testGetFieldDefColumnsWhenShowConciseIsTrue() throws ZinggClientExce
FieldDefinition def3 = new FieldDefinition();
def3.setFieldName("field_str_DONTspaceUSE");
def3.setDataType("\"string\"");
def3.setMatchTypeInternal(MatchType.getMatchType("DONT USE"));
def3.setMatchTypeInternal(MatchType.getMatchType("DONT_USE"));
def3.setFields("field_str_DONTspaceUSE");

List<FieldDefinition> fieldDef = new ArrayList<FieldDefinition>();
Expand Down Expand Up @@ -97,7 +97,7 @@ public void testGetFieldDefColumnsWhenShowConciseIsFalse() throws ZinggClientExc
FieldDefinition def3 = new FieldDefinition();
def3.setFieldName("field_str_DONTspaceUSE");
def3.setDataType("\"string\"");
def3.setMatchTypeInternal(MatchType.getMatchType("DONT USE"));
def3.setMatchTypeInternal(MatchType.getMatchType("DONT_USE"));
def3.setFields("field_str_DONTspaceUSE");

List<FieldDefinition> fieldDef = new ArrayList<FieldDefinition>();
Expand Down

0 comments on commit b2e71b7

Please sign in to comment.