File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ describe("`SkillsSection`", () => {
107107
108108 ( wrapper . instance ( ) as SkillsSection ) . handleSort ( getFakeEventWithValue ( "Skill Name" ) ) ;
109109
110- const comparator : SkillSortComparator = wrapper . state ( "sortComparator" ) ;
110+ const comparator : SkillSortComparator = wrapper . state ( "sortComparator" ) as SkillSortComparator ;
111111
112112 expect ( comparator ) . toEqual ( nameSkillComparator ) ;
113113 } ) ;
@@ -119,7 +119,7 @@ describe("`SkillsSection`", () => {
119119 ( wrapper . instance ( ) as SkillsSection ) . handleSort ( getFakeEventWithValue ( "Name" ) ) ;
120120 ( wrapper . instance ( ) as SkillsSection ) . handleSort ( getFakeEventWithValue ( "Recency" ) ) ;
121121
122- const comparator : SkillSortComparator = wrapper . state ( "sortComparator" ) ;
122+ const comparator : SkillSortComparator = wrapper . state ( "sortComparator" ) as SkillSortComparator ;
123123
124124 expect ( comparator ) . toEqual ( commitRecencySkillComparator ) ;
125125 } ) ;
You can’t perform that action at this time.
0 commit comments