Skip to content
This repository has been archived by the owner on Jul 12, 2020. It is now read-only.

Commit

Permalink
Fix test with new patch builder.
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed Apr 14, 2015
1 parent 75950b5 commit 3ff0f7b
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions features/optimize_use.feature
Original file line number Diff line number Diff line change
Expand Up @@ -70,18 +70,17 @@ Feature: Optimize use
"""
--- a/vfs://project/src/Foo.php
+++ b/vfs://project/src/Foo.php
@@ -1,4 +1,6 @@
@@ -1,9 +1,11 @@
<?php
+use Bar\Qux\Adapter;
+
+use Bar\Qux\Adapter;
class Foo
{
@@ -5,5 +5,5 @@
public function operation()
{
- return new \Bar\Qux\Adapter();
+ return new Adapter();
}
}
"""
"""

0 comments on commit 3ff0f7b

Please sign in to comment.