diff options
| author | doufenghu <[email protected]> | 2024-10-30 20:43:52 +0800 |
|---|---|---|
| committer | doufenghu <[email protected]> | 2024-10-30 20:43:52 +0800 |
| commit | 03c84f6ca3b1669bf034a2a76ef80308132b2204 (patch) | |
| tree | 1c7747852732b5fa97df0453a8eb4c17c12afffc | |
| parent | 7e9a0593fea1f42a0f1c955abbc4d72ea96d34a8 (diff) | |
[Fix][test] Rename test method lookup_field/output_field to lookupField/outputField.
| -rw-r--r-- | groot-core/src/test/java/com/geedgenetworks/core/udf/cn/IntelligenceIndicatorLookupTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/groot-core/src/test/java/com/geedgenetworks/core/udf/cn/IntelligenceIndicatorLookupTest.java b/groot-core/src/test/java/com/geedgenetworks/core/udf/cn/IntelligenceIndicatorLookupTest.java index 316e4d1..7d643f4 100644 --- a/groot-core/src/test/java/com/geedgenetworks/core/udf/cn/IntelligenceIndicatorLookupTest.java +++ b/groot-core/src/test/java/com/geedgenetworks/core/udf/cn/IntelligenceIndicatorLookupTest.java @@ -162,8 +162,8 @@ public class IntelligenceIndicatorLookupTest { parameters.put("kb_name", kbName); parameters.put("option", "SUBSCRIBER_TO_TAG"); udfContext.setParameters(parameters); - udfContext.setLookup_fields(Collections.singletonList("subscriber_id")); - udfContext.setOutput_fields(Collections.singletonList("subscriber_tags")); + udfContext.setLookupFields(Collections.singletonList("subscriber_id")); + udfContext.setOutputFields(Collections.singletonList("subscriber_tags")); intelligenceIndicatorLookup.open(runtimeContext, udfContext); Event event = new Event(); |
