diff --git a/tests/rules/accessibility-element-modifier-remover.spec.ts b/tests/rules/accessibility-element-modifier-remover.spec.ts index b440e65..dd24821 100644 --- a/tests/rules/accessibility-element-modifier-remover.spec.ts +++ b/tests/rules/accessibility-element-modifier-remover.spec.ts @@ -13,7 +13,7 @@ const expectIsSameFileAfterApplyingRules = const rule = AccessibilityElementModifierRemover; describe('AccessibilityElementModifierRemover', () => { - it('runs the rule successfully for Elane example', async () => { + it('runs the rule successfully for Elane sample', async () => { await expectIsSameFileAfterApplyingRules( `${SWIFT_FILE_SAMPLES_BASE_PATH}/Elane.swift`, `${SWIFT_FILE_SAMPLES_BASE_PATH}/Elane_noAccessibilityElementModifier.swift`, @@ -21,7 +21,7 @@ describe('AccessibilityElementModifierRemover', () => { ); }); - it('runs the rule successfully for Elane example when substitute with comment is enabled', async () => { + it('runs the rule successfully for Elane sample when substitute with comment is enabled', async () => { await expectIsSameFileAfterApplyingRules( `${SWIFT_FILE_SAMPLES_BASE_PATH}/Elane.swift`, `${SWIFT_FILE_SAMPLES_BASE_PATH}/Elane_noAccessibilityElementModifierWithComments.swift`, diff --git a/tests/rules/accessibility-hidden-modifier-remover.spec.ts b/tests/rules/accessibility-hidden-modifier-remover.spec.ts index 3200865..1818e48 100644 --- a/tests/rules/accessibility-hidden-modifier-remover.spec.ts +++ b/tests/rules/accessibility-hidden-modifier-remover.spec.ts @@ -13,7 +13,7 @@ const expectIsSameFileAfterApplyingRules = const rule = AccessibilityHiddenModifierRemover; describe('AccessibilityHiddenModifierRemover', () => { - it('runs the rule successfully for Enzo example', async () => { + it('runs the rule successfully for Enzo sample', async () => { await expectIsSameFileAfterApplyingRules( `${SWIFT_FILE_SAMPLES_BASE_PATH}/Enzo.swift`, `${SWIFT_FILE_SAMPLES_BASE_PATH}/Enzo_noAccessibilityHiddenModifier.swift`, diff --git a/tests/rules/accessibility-hint-modifier-remover.spec.ts b/tests/rules/accessibility-hint-modifier-remover.spec.ts index a1dc608..b970c1f 100644 --- a/tests/rules/accessibility-hint-modifier-remover.spec.ts +++ b/tests/rules/accessibility-hint-modifier-remover.spec.ts @@ -13,7 +13,7 @@ const expectIsSameFileAfterApplyingRules = const rule = AccessibilityHintModifierRemover; describe('AccessibilityHintModifierRemover', () => { - it('runs the rule successfully for Romilda example', async () => { + it('runs the rule successfully for Romilda sample', async () => { await expectIsSameFileAfterApplyingRules( `${SWIFT_FILE_SAMPLES_BASE_PATH}/Romilda.swift`, `${SWIFT_FILE_SAMPLES_BASE_PATH}/Romilda_noAccessibilityHintModifier.swift`, @@ -21,7 +21,7 @@ describe('AccessibilityHintModifierRemover', () => { ); }); - it('runs the rule successfully for Romilda example when substitute with comment is enabled', async () => { + it('runs the rule successfully for Romilda sample when substitute with comment is enabled', async () => { await expectIsSameFileAfterApplyingRules( `${SWIFT_FILE_SAMPLES_BASE_PATH}/Romilda.swift`, `${SWIFT_FILE_SAMPLES_BASE_PATH}/Romilda_noAccessibilityHintModifierWithComments.swift`, diff --git a/tests/rules/accessibility-label-modifier-remover.spec.ts b/tests/rules/accessibility-label-modifier-remover.spec.ts index 9d90bbb..b95a5d2 100644 --- a/tests/rules/accessibility-label-modifier-remover.spec.ts +++ b/tests/rules/accessibility-label-modifier-remover.spec.ts @@ -13,7 +13,7 @@ const expectIsSameFileAfterApplyingRules = const rule = AccessibilityLabelModifierRemover; describe('AccessibilityLabelModifierRemover', () => { - it('runs the rule successfully for Raislan example', async () => { + it('runs the rule successfully for Raislan sample', async () => { await expectIsSameFileAfterApplyingRules( `${SWIFT_FILE_SAMPLES_BASE_PATH}/Raislan.swift`, `${SWIFT_FILE_SAMPLES_BASE_PATH}/Raislan_noAccessibilityLabelModifier.swift`, diff --git a/tests/rules/accessibility-modifier-remover.spec.ts b/tests/rules/accessibility-modifier-remover.spec.ts index c29199f..6d188d0 100644 --- a/tests/rules/accessibility-modifier-remover.spec.ts +++ b/tests/rules/accessibility-modifier-remover.spec.ts @@ -13,7 +13,7 @@ const expectIsSameFileAfterApplyingRules = const rule = AccessibilityModifierRemover; describe('AccessibilityModifierRemover', () => { - it('runs the rule successfully for Hildete example', async () => { + it('runs the rule successfully for Hildete sample', async () => { await expectIsSameFileAfterApplyingRules( `${SWIFT_FILE_SAMPLES_BASE_PATH}/Hildete.swift`, `${SWIFT_FILE_SAMPLES_BASE_PATH}/Hildete_noAccessibilityModifier.swift`, diff --git a/tests/rules/accessibility-value-modifier-remover.spec.ts b/tests/rules/accessibility-value-modifier-remover.spec.ts index 7968ba6..6a579da 100644 --- a/tests/rules/accessibility-value-modifier-remover.spec.ts +++ b/tests/rules/accessibility-value-modifier-remover.spec.ts @@ -13,7 +13,7 @@ const expectIsSameFileAfterApplyingRules = const rule = AccessibilityValueModifierRemover; describe('AccessibilityValueModifierRemover', () => { - it('runs the rule successfully for Romilda example', async () => { + it('runs the rule successfully for Romilda sample', async () => { await expectIsSameFileAfterApplyingRules( `${SWIFT_FILE_SAMPLES_BASE_PATH}/Romilda.swift`, `${SWIFT_FILE_SAMPLES_BASE_PATH}/Romilda_noAccessibilityValueModifier.swift`, diff --git a/tests/rules/image-decorative-label-remover.spec.ts b/tests/rules/image-decorative-label-remover.spec.ts index 3e0ef58..dc48586 100644 --- a/tests/rules/image-decorative-label-remover.spec.ts +++ b/tests/rules/image-decorative-label-remover.spec.ts @@ -13,7 +13,7 @@ const expectIsSameFileAfterApplyingRules = const rule = ImageDecorativeLabelRemover; describe('ImageDecorativeLabelRemover', () => { - it('runs the rule successfully for Enzo example', async () => { + it('runs the rule successfully for Enzo sample', async () => { await expectIsSameFileAfterApplyingRules( `${SWIFT_FILE_SAMPLES_BASE_PATH}/Enzo.swift`, `${SWIFT_FILE_SAMPLES_BASE_PATH}/Enzo_noImageDecorativeLabel.swift`, @@ -21,7 +21,7 @@ describe('ImageDecorativeLabelRemover', () => { ); }); - it('is no-op for Hildete example', async () => { + it('is no-op for Hildete sample', async () => { await expectIsSameFileAfterApplyingRules( `${SWIFT_FILE_SAMPLES_BASE_PATH}/Hildete.swift`, `${SWIFT_FILE_SAMPLES_BASE_PATH}/Hildete.swift`, diff --git a/tests/rules/standard-font-to-static-size-replacer.spec.ts b/tests/rules/standard-font-to-static-size-replacer.spec.ts index 2944eb2..03f1c0b 100644 --- a/tests/rules/standard-font-to-static-size-replacer.spec.ts +++ b/tests/rules/standard-font-to-static-size-replacer.spec.ts @@ -13,7 +13,7 @@ const expectIsSameFileAfterApplyingRules = const rule = StandardFontToStaticSizeReplacer; describe('StandardFontToStaticSizeReplacer', () => { - it('runs the rule successfully for Elane example', async () => { + it('runs the rule successfully for Elane sample', async () => { await expectIsSameFileAfterApplyingRules( `${SWIFT_FILE_SAMPLES_BASE_PATH}/Elane.swift`, `${SWIFT_FILE_SAMPLES_BASE_PATH}/Elane_staticFontSizes.swift`, @@ -21,7 +21,7 @@ describe('StandardFontToStaticSizeReplacer', () => { ); }); - it('runs the rule successfully for Elane example when substitute with comment is enabled', async () => { + it('runs the rule successfully for Elane sample when substitute with comment is enabled', async () => { await expectIsSameFileAfterApplyingRules( `${SWIFT_FILE_SAMPLES_BASE_PATH}/Elane.swift`, `${SWIFT_FILE_SAMPLES_BASE_PATH}/Elane_staticFontSizesWithComments.swift`, @@ -30,7 +30,7 @@ describe('StandardFontToStaticSizeReplacer', () => { ); }); - it('is no-op for Hildete example', async () => { + it('is no-op for Hildete sample', async () => { await expectIsSameFileAfterApplyingRules( `${SWIFT_FILE_SAMPLES_BASE_PATH}/Hildete.swift`, `${SWIFT_FILE_SAMPLES_BASE_PATH}/Hildete.swift`,