Skip to content

Commit

Permalink
Deleting Fail-Like Test
Browse files Browse the repository at this point in the history
Deleting test with data "undefinedMixinClassWithPropertyAssignment_WithMagicMethod_Similar".

It was only needed to make sure that the failed test was designed with the right expectation.
  • Loading branch information
issidorov committed Aug 21, 2024
1 parent 3cf1942 commit 0b83d3f
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions tests/MixinAnnotationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -652,21 +652,6 @@ public function __set(string $name, string $value) {}
(new A)->foo = "bar";',
'error_message' => 'UndefinedMagicPropertyAssignment',
],
'undefinedMixinClassWithPropertyAssignment_WithMagicMethod_Similar' => [
'code' => '<?php
/**
* @property string $baz
* @mixin B
*/
class A {
public function __set(string $name, string $value) {}
}
/* this is difference */
$a = new A();
$a->foo = "bar";',
'error_message' => 'UndefinedMagicPropertyAssignment',
],
'undefinedMixinClassWithMethodCall' => [
'code' => '<?php
/** @mixin B */
Expand Down

0 comments on commit 0b83d3f

Please sign in to comment.