Skip to content

Commit 3ae999f

Browse files
committed
Alternative coverage fix
1 parent 2a8180f commit 3ae999f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utilities/findBreakingChanges.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,10 @@ function findTypeChanges(
184184
for (const oldType of typesDiff.removed) {
185185
schemaChanges.push({
186186
type: BreakingChangeType.TYPE_REMOVED,
187+
/* c8 ignore next 5 */
187188
description: isSpecifiedScalarType(oldType)
188189
? `Standard scalar ${oldType.name} was removed because it is not referenced anymore.`
189-
: /* c8 ignore next 2 */
190-
isSpecifiedEnumType(oldType)
190+
: isSpecifiedEnumType(oldType)
191191
? `Standard enum ${oldType.name} was removed because it is not referenced anymore.`
192192
: `${oldType.name} was removed.`,
193193
});

0 commit comments

Comments
 (0)