diff --git a/dd-java-agent/agent-tooling/src/test/groovy/datadog/trace/agent/decorator/OrmClientDecoratorTest.groovy b/dd-java-agent/agent-tooling/src/test/groovy/datadog/trace/agent/decorator/OrmClientDecoratorTest.groovy index 8f1a724a22..4e99cb5fc0 100644 --- a/dd-java-agent/agent-tooling/src/test/groovy/datadog/trace/agent/decorator/OrmClientDecoratorTest.groovy +++ b/dd-java-agent/agent-tooling/src/test/groovy/datadog/trace/agent/decorator/OrmClientDecoratorTest.groovy @@ -21,10 +21,10 @@ class OrmClientDecoratorTest extends DatabaseClientDecoratorTest { 0 * _ where: - testName | entity | entityName || isSet - "null entity" | null | "name" || false - "null entityName" | "not null" | null || false - "name set" | "not null" | "name" || true + testName | entity | entityName | isSet + "null entity" | null | "name" | false + "null entityName" | "not null" | null | false + "name set" | "not null" | "name" | true } def "test onOperation null span"() {