Skip to content

Commit 2ac332e

Browse files
Copilottrask
andcommitted
Apply code formatting to new assertion methods
Co-authored-by: trask <[email protected]>
1 parent 4c7baff commit 2ac332e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

smoke-tests/framework/src/main/java/com/microsoft/applicationinsights/smoketest/DependencyAssert.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ public DependencyAssert hasNoParent() {
6262
@CanIgnoreReturnValue
6363
public DependencyAssert hasParent(String parentId) {
6464
isNotNull();
65-
assertThat(getDependencyData().getProperties().get("ai.operation.parentId")).isEqualTo(parentId);
65+
assertThat(getDependencyData().getProperties().get("ai.operation.parentId"))
66+
.isEqualTo(parentId);
6667
return this;
6768
}
6869

0 commit comments

Comments
 (0)