Skip to content

Commit c625c30

Browse files
committed
remove unnecessary .tobe(true) in unit tests.
1 parent c7996b2 commit c625c30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/instrumentation-aws-sdk/test/stepfunctions.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ describe('SFN', () => {
6767
expect(
6868
ATTR_AWS_STEP_FUNCTIONS_STATE_MACHINE_ARN in
6969
stateMachineAttributeSpan.attributes
70-
).toBe(true);
70+
);
7171
expect(
7272
stateMachineAttributeSpan.attributes[
7373
ATTR_AWS_STEP_FUNCTIONS_STATE_MACHINE_ARN
@@ -102,7 +102,7 @@ describe('SFN', () => {
102102
const activityAttributeSpan = getActivityAttributeSpans[0];
103103
expect(
104104
ATTR_AWS_STEP_FUNCTIONS_ACTIVITY_ARN in activityAttributeSpan.attributes
105-
).toBe(true);
105+
);
106106
expect(
107107
activityAttributeSpan.attributes[ATTR_AWS_STEP_FUNCTIONS_ACTIVITY_ARN]
108108
).toBe(activityArn);

0 commit comments

Comments
 (0)