File tree Expand file tree Collapse file tree 5 files changed +6
-9
lines changed
LinkDotNet.Blog.IntegrationTests/Web/Shared
LinkDotNet.Blog.UnitTests/Web/Shared
LinkDotNet.Blog.Web/Pages Expand file tree Collapse file tree 5 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,11 @@ public class ProficiencyLevel : Enumeration<ProficiencyLevel>
7
7
public static readonly ProficiencyLevel Expert = new ( nameof ( Expert ) ) ;
8
8
9
9
private ProficiencyLevel ( )
10
- : base ( )
11
10
{
12
11
}
13
12
14
13
private ProficiencyLevel ( string key )
15
14
: base ( key )
16
15
{
17
16
}
18
- }
17
+ }
Original file line number Diff line number Diff line change 1
1
using System ;
2
2
using System . Collections . Generic ;
3
3
using System . Linq . Expressions ;
4
- using AngleSharp . Dom ;
5
4
using Bunit ;
6
5
using FluentAssertions ;
7
6
using LinkDotNet . Blog . Domain ;
@@ -175,4 +174,4 @@ private static void SetupGetAll(
175
174
It . IsAny < int > ( ) ) ) . ReturnsAsync ( new List < ProfileInformationEntry > ( ) . ToPagedList ( ) ) ;
176
175
return ( repoMock , calcMock ) ;
177
176
}
178
- }
177
+ }
Original file line number Diff line number Diff line change @@ -53,11 +53,11 @@ public void ShouldTrimData()
53
53
public void ShouldReturnValueWhenEnterWasPressed ( string key , bool expectedInvoke )
54
54
{
55
55
var wasInvoked = false ;
56
- var cut = RenderComponent < SearchInput > ( p => p . Add ( s => s . SearchEntered , s => wasInvoked = true ) ) ;
56
+ var cut = RenderComponent < SearchInput > ( p => p . Add ( s => s . SearchEntered , _ => wasInvoked = true ) ) ;
57
57
cut . Find ( "input" ) . Change ( "Text" ) ;
58
58
59
59
cut . Find ( "input" ) . KeyUp ( Key . Get ( key ) ) ;
60
60
61
61
wasInvoked . Should ( ) . Be ( expectedInvoke ) ;
62
62
}
63
- }
63
+ }
Original file line number Diff line number Diff line change 1
1
using System ;
2
- using System . Collections . Generic ;
3
2
using System . Linq ;
4
3
using System . Threading . Tasks ;
5
4
using LinkDotNet . Blog . Domain ;
@@ -46,4 +45,4 @@ public async Task<DashboardData> GetDashboardDataAsync()
46
45
AboutMeClicksLast30Days = aboutMeClicksLast30Days ,
47
46
} ;
48
47
}
49
- }
48
+ }
Original file line number Diff line number Diff line change 20
20
<section >
21
21
<header >
22
22
<div class =" recent-posts" >
23
- <h1 >Recent Posts</h1 >
23
+ <h1 >Recent Posts's </h1 >
24
24
</div >
25
25
</header >
26
26
<div class =" content px-4 my-2" >
You can’t perform that action at this time.
0 commit comments