Skip to content

Commit

Permalink
Fix TemporaryUpdateTest cases
Browse files Browse the repository at this point in the history
  • Loading branch information
edsrzf committed Jan 19, 2024
1 parent 10eae03 commit cf0fd88
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/FileUpdates/TemporaryUpdateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ public function foo() : void {
class A {
public function foo() : void {
throw new Error("bad", 5);
throw new Error("bad", []);
}
}',
],
Expand All @@ -615,7 +615,7 @@ public function foo() : void {
class A {
public function foo() : void {
throw new Error("bad", 5);
throw new Error("bad", []);
}
}',
],
Expand Down Expand Up @@ -659,7 +659,7 @@ public function foo() : void {
class A {
public function foo() : void {
throw new E("bad", 5);
throw new E("bad", []);
}
}',
],
Expand All @@ -669,7 +669,7 @@ public function foo() : void {
class A {
public function foo() : void {
throw new E("bad", 5);
throw new E("bad", []);
}
}',
],
Expand Down Expand Up @@ -709,7 +709,7 @@ public function foo() : void {
class A {
public function foo() : void {
throw new Error("bad", 5);
throw new Error("bad", []);
}
}',
],
Expand All @@ -719,7 +719,7 @@ public function foo() : void {
class A {
public function foo() : void {
throw new Error("bad", 5);
throw new Error("bad", []);
}
}',
],
Expand Down Expand Up @@ -757,7 +757,7 @@ public function foo() : void {
class A {
public function foo() : void {
throw new E("bad", 5);
throw new E("bad", []);
}
}',
],
Expand All @@ -767,7 +767,7 @@ public function foo() : void {
class A {
public function foo() : void {
throw new E("bad", 5);
throw new E("bad", []);
}
}',
],
Expand Down

0 comments on commit cf0fd88

Please sign in to comment.