浏览代码

[NO JIRA] fix test incorrect assertion of positivity

tags/10.0.0.68432
Steve Marion 1年前
父节点
当前提交
a3cecf868e

+ 1
- 1
sonar-plugin-api-impl/src/test/java/org/sonar/api/impl/utils/AlwaysIncreasingSystem2Test.java 查看文件

@@ -97,7 +97,7 @@ public class AlwaysIncreasingSystem2Test {
if (initialValue != null) {
assertThat(now).isEqualTo(initialValue);
} else {
assertThat(now).isPositive();
assertThat(now).isNotNegative();
}
previousValue = now;
} else {

正在加载...
取消
保存