Skip to content

Commit

Permalink
Revert "fixing class name"
Browse files Browse the repository at this point in the history
This reverts commit 74ed06e.
  • Loading branch information
tkobayas committed Nov 9, 2023
1 parent 74ed06e commit 913a7f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ public void testUnicodeCSVDecisionTable() {
ksession = kbase.newKieSession();

List<Command<?>> commands = new ArrayList<>();
List<Clovek> dospělí = new ArrayList<>();
List<Člověk> dospělí = new ArrayList<>();
commands.add(CommandFactory.newSetGlobal("dospělí", dospělí));
Clovek Řehoř = new Clovek();
Člověk Řehoř = new Člověk();
Řehoř.setVěk(30);
Řehoř.setJméno("Řehoř");
commands.add(CommandFactory.newInsert(Řehoř));
Expand All @@ -89,7 +89,7 @@ public void testUnicodeCSVDecisionTable() {
assertThat(kbase.getRule("org.drools.decisiontable", "مرحبا العالم")).isNotNull();
}

public static class Clovek {
public static class Člověk {

private int věk;
private String jméno;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ public void testUnicodeXLSDecisionTable() {
ksession = kbase.newKieSession();

List<Command<?>> commands = new ArrayList<>();
List<Clovek> dospělí = new ArrayList<>();
List<Člověk> dospělí = new ArrayList<>();
commands.add(CommandFactory.newSetGlobal("dospělí", dospělí));
Clovek Řehoř = new Clovek();
Člověk Řehoř = new Člověk();
Řehoř.setVěk(30);
Řehoř.setJméno("Řehoř");
commands.add(CommandFactory.newInsert(Řehoř));
Expand All @@ -89,7 +89,7 @@ public void testUnicodeXLSDecisionTable() {
assertThat(kbase.getRule("org.drools.decisiontable", "مرحبا العالم")).isNotNull();
}

public static class Clovek {
public static class Člověk {

private int věk;
private String jméno;
Expand Down

0 comments on commit 913a7f9

Please sign in to comment.