From 4dd7b456786235edb787aecbc1865e679e4e57eb Mon Sep 17 00:00:00 2001
From: Dani Palou
Date: Fri, 7 Jun 2024 10:28:10 +0200
Subject: [PATCH 2/2] MOBILE-4470 behat: Fix grades behat tests
In LMS there was a nasty hack to return different content based on whether the site was running behat or not. This hack has been removed in MDL-77685, so now we can remove the isAutomated check from the grades code
---
src/core/features/grades/services/grades-helper.ts | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/core/features/grades/services/grades-helper.ts b/src/core/features/grades/services/grades-helper.ts
index f75d1185e..4a836cca5 100644
--- a/src/core/features/grades/services/grades-helper.ts
+++ b/src/core/features/grades/services/grades-helper.ts
@@ -43,7 +43,6 @@ import { CoreError } from '@classes/errors/error';
import { CoreCourseHelper } from '@features/course/services/course-helper';
import { CoreCourseModuleDelegate } from '@features/course/services/module-delegate';
import { CoreCourseAccess } from '@features/course/services/course-options-delegate';
-import { CorePlatform } from '@services/platform';
export const GRADES_PAGE_NAME = 'grades';
export const GRADES_PARTICIPANTS_PAGE_NAME = 'participant-grades';
@@ -105,8 +104,8 @@ export class CoreGradesHelperProvider {
row.rowclass += itemNameColumn.class.indexOf('hidden') >= 0 ? ' hidden' : '';
row.rowclass += itemNameColumn.class.indexOf('dimmed_text') >= 0 ? ' dimmed_text' : '';
- if (!useLegacyLayout && !CorePlatform.isAutomated()) {
- // Activity name is only included in the webservice response from the latest version when behat is not running.
+ if (!useLegacyLayout) {
+ // Remove the "title" of the row (activity name, 'Manual item', 'Aggregation', etc.).
content = content.replace(/]+>.+?<\/span>/i, '');
}