jhedstrom / DrupalDriver

A collection of drivers for controlling Drupal.
GNU General Public License v2.0
64 stars 95 forks source link

Fix 'id' not found #257

Closed MPParsley closed 1 year ago

MPParsley commented 1 year ago

The following scenario results in an error 'id' not found (Drupal\Core\Entity\Query\QueryException) on php 8.1:

    Given I am logged in as an "administrator"
    And "my_taxonomy" terms:
      | name | parent | description |
      | 123  |        | Description |

Instead of checking isset we should check if not empty Or there should be a way to pass NULL in the NodeTable.

Kingdutch commented 1 year ago

Please use https://github.com/jhedstrom/DrupalDriver/pull/260 instead

MPParsley commented 1 year ago

Ok thanks for pointing that out!