diff --git a/core/modules/views/lib/Drupal/views/Tests/UI/CachedDataUITest.php b/core/modules/views/lib/Drupal/views/Tests/UI/CachedDataUITest.php index c0da6e7..8e1218b 100644 --- a/core/modules/views/lib/Drupal/views/Tests/UI/CachedDataUITest.php +++ b/core/modules/views/lib/Drupal/views/Tests/UI/CachedDataUITest.php @@ -48,7 +48,7 @@ public function testCacheData() { // The 'editing' property should still be set. $this->assertTrue($view_cache->editing, 'The editing property is correctly set.'); // The view should now be locked. - $this->assertTrue($view_cache->locked, 'The vierw is locked.'); + $this->assertTrue($view_cache->locked, 'The view is locked.'); // Change the status of the view. $view = entity_load('view', 'test_view'); @@ -69,7 +69,7 @@ public function testCacheData() { $this->clickLink(t('break this lock')); // Test we can save the view. $this->drupalPost('admin/structure/views/view/test_view/edit', array(), t('Save')); - $this->assertText('The view test_view has been saved.'); + $this->assertText(t('The view test_view has been saved.')); } }