Skip to content

Commit

Permalink
Merge pull request #118 from Lombiq/issue/OSOE-364
Browse files Browse the repository at this point in the history
OSOE-364: Fixing admin URL generation
  • Loading branch information
sarahelsaig authored Oct 24, 2022
2 parents fec010c + 34bd50d commit 4b985b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static Task GoToAdminDataTableAsync<T>(this UITestContext context)
context.GoToAdminDataTableAsync(typeof(T).Name);

public static Task GoToAdminDataTableAsync(this UITestContext context, string providerName) =>
context.GoToRelativeUrlAsync("/Admin/DataTable/" + providerName);
context.GoToAdminRelativeUrlAsync("/DataTable/" + providerName);

public static void VerifyDataTablePager(this UITestContext context, int pageCount, int currentPage = 1)
{
Expand Down

0 comments on commit 4b985b7

Please sign in to comment.