Skip to content
Snippets Groups Projects
Commit a3b7ff3f authored by Ankit Pathak's avatar Ankit Pathak Committed by Matt Glaman
Browse files

Issue #3455320 by ankitv18, mglaman, japerry: Automated Drupal 11...

Issue #3455320 by ankitv18, mglaman, japerry: Automated Drupal 11 compatibility fixes for views_remote_data
parent 3b9b494e
No related branches found
No related tags found
1 merge request!19Issue #3455320: Make D11 ready.
Pipeline #208080 passed with warnings
......@@ -50,7 +50,7 @@ variables:
OPT_IN_TEST_PREVIOUS_MAJOR: 1
OPT_IN_TEST_PREVIOUS_MINOR: 1
OPT_IN_TEST_NEXT_MINOR: 1
OPT_IN_TEST_NEXT_MAJOR: 1
###################################################################################
#
......
......@@ -176,7 +176,6 @@ display:
default_argument_type: fixed
default_argument_options:
argument: ''
default_argument_skip_url: false
summary_options:
base_path: ''
count: true
......
......@@ -46,7 +46,7 @@ final class RemoteDataQueryEventTest extends ViewsRemoteDataTestBase {
self::assertCount(1, $this->caughtEvents);
$results = $event->getResults();
self::assertCount(2, $results);
self::assertObjectHasAttribute('name', $results[0]);
self::assertObjectHasProperty('name', $results[0]);
self::assertEquals('Llama', $results[0]->name);
}
......
......@@ -64,7 +64,7 @@ final class ViewsIntegrationTest extends ViewsRemoteDataTestBase {
* @return \Generator
* The test data.
*/
public function simpleViews(): \Generator {
public static function simpleViews(): \Generator {
yield 'views_remote_data_test' => [
'views_remote_data_test',
[],
......
name: Views Remote Data
type: module
description: Provide an API to integrate remote data with Views
core_version_requirement: '>=9'
core_version_requirement: ^9 || ^10 || ^11
dependencies:
- drupal:views
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment