Skip to content

Commit

Permalink
fixing tests for matchtype (#1088)
Browse files Browse the repository at this point in the history
  • Loading branch information
sania-16 authored Mar 10, 2025
1 parent a9ff514 commit 6bbb06a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import zingg.common.client.Arguments;
import zingg.common.client.FieldDefinition;
import zingg.common.client.IArguments;
import zingg.common.client.MatchType;
import zingg.common.client.MatchTypes;
import zingg.common.client.ZinggClientException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import zingg.common.client.Arguments;
import zingg.common.client.FieldDefinition;
import zingg.common.client.MatchType;
import zingg.common.client.IMatchType;
import zingg.common.client.MatchTypes;
import zingg.common.client.ZFrame;
import zingg.common.client.ZinggClientException;
Expand Down Expand Up @@ -95,10 +95,10 @@ protected Arguments getArgs() throws ZinggClientException {

List<FieldDefinition> fdList = new ArrayList<FieldDefinition>(4);

ArrayList<MatchType> matchTypelistId = new ArrayList<MatchType>();
matchTypelistId.add((MatchType) MatchTypes.DONT_USE);
ArrayList<MatchType> matchTypelistFuzzy = new ArrayList<MatchType>();
matchTypelistFuzzy.add((MatchType) MatchTypes.FUZZY);
ArrayList<IMatchType> matchTypelistId = new ArrayList<IMatchType>();
matchTypelistId.add(MatchTypes.DONT_USE);
ArrayList<IMatchType> matchTypelistFuzzy = new ArrayList<IMatchType>();
matchTypelistFuzzy.add(MatchTypes.FUZZY);

FieldDefinition idFD = new FieldDefinition();
idFD.setDataType("int");
Expand Down

0 comments on commit 6bbb06a

Please sign in to comment.