We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c81ab6 commit 54c645fCopy full SHA for 54c645f
dbsync/src/test/java/com/taobao/tddl/dbsync/binlog/LogEventTest.java
@@ -63,13 +63,13 @@ public void getTypeNameInputPositiveOutputNotNull3() {
63
public void getTypeNameInputPositiveOutputNotNull4() {
64
65
// Arrange
66
- final int type = 36;
+ final int type = 80;
67
68
// Act
69
final String actual = LogEvent.getTypeName(type);
70
71
// Assert result
72
- Assert.assertEquals("Unknown", actual);
+ Assert.assertTrue(actual.startsWith("Unknown"));
73
}
74
75
// Test written by Diffblue Cover.
0 commit comments