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 ac9b85f commit a57d64dCopy full SHA for a57d64d
bulk-model-sync-lib/src/commonTest/kotlin/org/modelix/model/sync/bulk/AbstractModelSyncTest.kt
@@ -601,8 +601,9 @@ abstract class AbstractModelSyncTest {
601
DeleteNodeOp::class to 1,
602
)
603
604
- assertEquals(expectedOperations, getNumOfUsedOperationsByType())
605
- assertNoOverlappingOperations(getPendingChanges().first)
+ val operations = getPendingChanges().first
+ assertEquals(expectedOperations, operations.numOpsByType())
606
+ assertNoOverlappingOperations(operations)
607
}
608
609
0 commit comments