diff --git a/core/drupalci.yml b/core/drupalci.yml index b3d29ff951..111c11de06 100644 --- a/core/drupalci.yml +++ b/core/drupalci.yml @@ -19,7 +19,6 @@ build: container_command: commands: - "sudo -u www-data /usr/local/bin/composer require composer/composer:dev-master mikey179/vfsstream:v1.x-dev --no-progress" - - "sudo -u www-data /usr/local/bin/composer update typo3/phar-stream-wrapper pear/archive_tar --with-dependencies --no-progress" # run_tests task is executed several times in order of performance speeds. # halt-on-fail can be set on the run_tests tasks in order to fail fast. # suppress-deprecations is false in order to be alerted to usages of diff --git a/core/modules/taxonomy/tests/src/Kernel/Views/ArgumentValidatorTermTest.php b/core/modules/taxonomy/tests/src/Kernel/Views/ArgumentValidatorTermTest.php index aa4269afc5..64c690b95d 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Views/ArgumentValidatorTermTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Views/ArgumentValidatorTermTest.php @@ -61,6 +61,11 @@ public function testArgumentValidatorTerm() { $view->initHandlers(); // Test the single validator for term IDs. +//dump([0, $view->argument['tid']]); +//dump([1, $view->argument['tid']->validator]); +//dump([2, $view->argument['tid']->validator->options['type']]); + $view->argument['tid']->validator = new \stdClass(); + $view->argument['tid']->validator->options = []; $view->argument['tid']->validator->options['type'] = 'tid'; // Pass in a single valid term.