Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[INLONG-10873][SDK] Transform support factorial function #10874

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[INLONG-10873][SDK]Transform support factorial function
  • Loading branch information
youzhi886 committed Sep 2, 2024
commit e5ce8416d87a7ad8983eff268b6dad5a0abb370a
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public void testFactorialFunction() throws Exception {
// case1: 5!
List<String> output1 = processor.transform("5|4|6|8");
Assert.assertEquals(1, output1.size());
Assert.assertEquals(output1.get(0), "result=120");
Assert.assertEquals("result=120", output1.get(0));

// case2: 0!
List<String> output2 = processor.transform("0|4|6|8");
Expand Down
Loading