File tree 3 files changed +4
-4
lines changed
Lombiq.OrchardCoreApiClient/Constants
Lombiq.OrchardCoreApiClient.Tester
Lombiq.OrchardCoreApiClient.Tests.UI/Extensions 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ await tenantsApiClient.CreateAndSetupTenantAsync(
43
43
RequestUrlPrefix = "api-client-tenant-" + suffix ,
44
44
RequestUrlHost = string . Empty ,
45
45
ConnectionString = string . Empty ,
46
- TablePrefix = "apiclienttenant" + suffix , // #spell-check-ignore-line
46
+ TablePrefix = "apiclienttenant" + suffix ,
47
47
RecipeName = "Blog" ,
48
48
Category = "API Client Tenants" ,
49
49
} ,
@@ -57,7 +57,7 @@ await tenantsApiClient.CreateAndSetupTenantAsync(
57
57
Password = "Password1!" ,
58
58
SiteName = "Api Client Tenant Site" ,
59
59
SiteTimeZone = "Europe/Budapest" ,
60
- TablePrefix = "apiclienttenant" + suffix , // #spell-check-ignore-line
60
+ TablePrefix = "apiclienttenant" + suffix ,
61
61
}
62
62
) ;
63
63
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public static async Task TestTenantsOrchardCoreApiClientBehaviorAsync(
36
36
string featureProfile = null )
37
37
{
38
38
const string tenantName = "UITestTenant" ;
39
- const string prefix = "uitesttenant" ; // #spell-check-ignore-line
39
+ const string prefix = "uitesttenant" ;
40
40
var databaseProvider = context . Configuration . UseSqlServer
41
41
? "SqlConnection"
42
42
: "Sqlite" ;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ public static class Timezones
9
9
private static IList < string > _timezoneIds ;
10
10
public static IList < string > TimezoneIds => _timezoneIds ??= GetTimeZoneIds ( ) ;
11
11
12
- public static IList < string > GetTimeZoneIds ( ) => TzdbDateTimeZoneSource . Default // #spell-check-ignore-line
12
+ public static IList < string > GetTimeZoneIds ( ) => TzdbDateTimeZoneSource . Default
13
13
. ZoneLocations
14
14
. Select ( timeZone => timeZone . ZoneId )
15
15
. ToList ( ) ;
You can’t perform that action at this time.
0 commit comments