Skip to content

Commit

Permalink
Update debugger system test for new structure (#961)
Browse files Browse the repository at this point in the history
* update debugger system test for new structure

* remove prefix
  • Loading branch information
dwsupplee authored Mar 27, 2018
1 parent 5ee7154 commit 0b1bbb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Debugger/tests/System/BasicTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function testRegisterSetUseBreakpoint($transport)
$this->assertNotEmpty($debuggee->id());

// Set a breakpoint
$breakpoint = $debuggee->setBreakpoint('tests/system/Debugger/BasicTest.php', __LINE__);
$breakpoint = $debuggee->setBreakpoint('tests/System/BasicTest.php', __LINE__);
$this->assertInstanceOf(Breakpoint::class, $breakpoint);
$this->assertNotNull($breakpoint->location());

Expand Down

0 comments on commit 0b1bbb3

Please sign in to comment.