Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
Signed-off-by: BOUHOURS Antoine <[email protected]>
  • Loading branch information
antoinebhs committed Feb 7, 2025
1 parent 13981cc commit f9d8ddb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4143,7 +4143,7 @@ void testPartialClone() {
try (NetworkStoreService service = createNetworkStoreService(randomServerPort)) {
Map<UUID, String> networkIds = service.getNetworkIds();
UUID networkUuid = networkIds.keySet().stream().findFirst().orElseThrow();
// Initial variant -> v1 (full clone)
// Initial variant -> v1 (partial clone)
service.cloneVariant(networkUuid, INITIAL_VARIANT_ID, "v1");
// v1 -> v2 (partial clone)
service.cloneVariant(networkUuid, "v1", "v2");
Expand All @@ -4156,7 +4156,7 @@ void testPartialClone() {
// Initial variant (full variant)
NetworkAttributes networkAttributes = network.getResource().getAttributes();
assertEquals(-1, networkAttributes.getFullVariantNum());
// v1 variant (full variant)
// v1 variant (partial variant)
network.getVariantManager().setWorkingVariant("v1");
networkAttributes = network.getResource().getAttributes();
assertEquals(0, networkAttributes.getFullVariantNum());
Expand Down

0 comments on commit f9d8ddb

Please sign in to comment.