@@ -23,7 +23,7 @@ public void ShouldRenderAllItemsSortedByOrder()
23
23
SetupGetAll ( repoMock , entry1 , entry2 ) ;
24
24
var cut = RenderProfileWithEmptyInformation ( ) ;
25
25
26
- var items = cut . FindAll ( ".profile-keypoints li" ) ;
26
+ var items = cut . FindAll ( ".aboutme- profile-keypoints li" ) ;
27
27
28
28
items . Count . ShouldBe ( 2 ) ;
29
29
items [ 0 ] . TextContent . ShouldContain ( "key 1" ) ;
@@ -70,7 +70,7 @@ public void ShouldDeleteEntryWhenConfirmed()
70
70
var ( repoMock , _) = RegisterServices ( ) ;
71
71
SetupGetAll ( repoMock , entryToDelete ) ;
72
72
var cut = RenderProfileInAdmin ( ) ;
73
- cut . Find ( ".profile-keypoints li button" ) . Click ( ) ;
73
+ cut . Find ( ".aboutme- profile-keypoints li button" ) . Click ( ) ;
74
74
75
75
cut . FindComponent < ConfirmDialog > ( ) . Find ( "#ok" ) . Click ( ) ;
76
76
@@ -86,7 +86,7 @@ public void ShouldNotDeleteEntryWhenNotConfirmed()
86
86
var ( repoMock , _) = RegisterServices ( ) ;
87
87
SetupGetAll ( repoMock , entryToDelete ) ;
88
88
var cut = RenderProfileInAdmin ( ) ;
89
- cut . Find ( ".profile-keypoints li button" ) . Click ( ) ;
89
+ cut . Find ( ".aboutme- profile-keypoints li button" ) . Click ( ) ;
90
90
91
91
cut . FindComponent < ConfirmDialog > ( ) . Find ( "#cancel" ) . Click ( ) ;
92
92
0 commit comments