Skip to content

Commit

Permalink
fixed compilation issue with qaf update
Browse files Browse the repository at this point in the history
  • Loading branch information
cjayswal committed Jan 23, 2020
1 parent 89a1628 commit 29940e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/qmetry/qaf/automation/cucumber/CucumberStep.java
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ protected Object[] processArgs(List<ParameterInfo> list, Object... objects) {

static class DataTableFormattor implements QAFTestStepArgumentFormatter<Object> {
private static final Gson gson = new GsonBuilder().setDateFormat("dd-MM-yyyy")
.registerTypeAdapter(ObjectWrapper.class, new GsonDeserializerObjectWrapper()).create();
.registerTypeAdapter(ObjectWrapper.class, new GsonDeserializerObjectWrapper(Object.class)).create();

@Override
public Object format(Object value, Map<String, Object> context) {
Expand Down

0 comments on commit 29940e2

Please sign in to comment.