Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OSOE-81: Shorten SiteName to fulfill the 70 character title limit #135

Merged
merged 4 commits into from
Feb 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Lombiq.Tests.UI.Samples/Helpers/SetupHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static async Task<Uri> RunSetupAsync(UITestContext context)
var homepageUri = await context.GoToSetupPageAndSetupOrchardCoreAsync(
new OrchardCoreSetupParameters(context)
{
SiteName = "Lombiq's Open-Source Orchard Core Extensions - UI Testing",
SiteName = "Lombiq's OSOCE - UI Testing",
RecipeId = RecipeId,
// A table prefix is not really needed but this way we also check whether we've written any SQL
// that doesn't support prefixes.
Expand Down
2 changes: 1 addition & 1 deletion Lombiq.Tests.UI.Samples/Tests/AzureBlobStorageTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public Task AnonymousHomePageShouldExistWithAzureBlobStorage(Browser browser) =>
context => context
.Get(By.ClassName("navbar-brand"))
.Text
.ShouldBe("Lombiq's Open-Source Orchard Core Extensions - UI Testing"),
.ShouldBe("Lombiq's OSOCE - UI Testing"),
browser,
// Note the configuration! We could also set this globally in UITestBase.
// You'll need an accessible Azure Blob Storage account. For testing we recommend the Azurite emulator
Expand Down
2 changes: 1 addition & 1 deletion Lombiq.Tests.UI.Samples/Tests/BasicTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public Task AnonymousHomePageShouldExist(Browser browser) =>
context
.Get(By.ClassName("navbar-brand"))
.Text
.ShouldBe("Lombiq's Open-Source Orchard Core Extensions - UI Testing");
.ShouldBe("Lombiq's OSOCE - UI Testing");

// Are we logged out?
(await context.GetCurrentUserNameAsync()).ShouldBeNullOrEmpty();
Expand Down
2 changes: 1 addition & 1 deletion Lombiq.Tests.UI.Samples/Tests/SqlServerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public Task AnonymousHomePageShouldExistWithSqlServer(Browser browser) =>
context => context
.Get(By.ClassName("navbar-brand"))
.Text
.ShouldBe("Lombiq's Open-Source Orchard Core Extensions - UI Testing"),
.ShouldBe("Lombiq's OSOCE - UI Testing"),
browser,
// Note the configuration! We could also set this globally in UITestBase.
configuration => configuration.UseSqlServer = true);
Expand Down