Skip to content

Commit

Permalink
Merge pull request #14 from rwth-acis/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
pdolif authored Aug 1, 2022
2 parents f13ef70 + ca439de commit 33e2263
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ publishing {
maven(MavenPublication) {
groupId = 'i5'
artifactId = 'las2peer-api-test-model'
version = '0.1.6'
version = '0.1.7'

from components.java
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public BodyAssertion(int id, int testRequestId, int modelId, BodyAssertionOperat
}

public BodyAssertion(BodyAssertionOperator operator) {
super(-1, -1, ASSERTION_TYPE_ID);
super(0, 0, ASSERTION_TYPE_ID);
this.operator = operator;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ public BodyAssertionOperator(int id, int operatorId, int modelId, int inputType,
}

public BodyAssertionOperator(int operatorId, int inputType, String inputValue, BodyAssertionOperator followedByOperator) {
this(-1, operatorId, -1, inputType, inputValue, followedByOperator);
this(0, operatorId, -1, inputType, inputValue, followedByOperator);
}

public BodyAssertionOperator(int operatorId, int inputType, BodyAssertionOperator followedByOperator) {
this(-1, operatorId, -1, inputType, "", followedByOperator);
this(0, operatorId, -1, inputType, "", followedByOperator);
}

public BodyAssertionOperator(int operatorId, int inputType) {
Expand Down

0 comments on commit 33e2263

Please sign in to comment.