Skip to content

Commit 964fa92

Browse files
build: remove unused clang format (#371)
1 parent 0dfb32f commit 964fa92

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.clang-format.yaml

Lines changed: 0 additions & 2 deletions
This file was deleted.

system-test/error-reporting.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -560,9 +560,7 @@ describe('error-reporting', () => {
560560
assert.strictEqual(
561561
rep.message.indexOf(SRC_ROOT),
562562
-1,
563-
`Expected the error item's representative's message to start with ${SRC_ROOT} but found '${
564-
rep.message
565-
}'`
563+
`Expected the error item's representative's message to start with ${SRC_ROOT} but found '${rep.message}'`
566564
);
567565
// Ensure the stack trace in the mssage contains the frame corresponding
568566
// to the 'expectedTopOfStack' function because that is the name of
@@ -574,9 +572,7 @@ describe('error-reporting', () => {
574572
assert.notStrictEqual(
575573
rep.message.indexOf(expectedTopOfStack),
576574
-1,
577-
`Expected the error item's representative's message to not contain ${expectedTopOfStack} but found '${
578-
rep.message
579-
}'`
575+
`Expected the error item's representative's message to not contain ${expectedTopOfStack} but found '${rep.message}'`
580576
);
581577
const context = rep.serviceContext;
582578
assert.ok(

0 commit comments

Comments
 (0)