Completed
Push — master ( 112c81...95d2b9 )
by Jacob
02:48 queued 19s
created
tests/unit/PhpQuickProfilerTest.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -6,18 +6,18 @@
 block discarded – undo
6 6
 class PhpQuickProfilerTest extends PHPUnit_Framework_TestCase
7 7
 {
8 8
 
9
-    public function __construct()
10
-    {
11
-    }
9
+	public function __construct()
10
+	{
11
+	}
12 12
 
13
-    public function testConstruct()
14
-    {
15
-        $console = new Console();
16
-        $startTime = microtime(true);
13
+	public function testConstruct()
14
+	{
15
+		$console = new Console();
16
+		$startTime = microtime(true);
17 17
 
18
-        $profiler = new PhpQuickProfiler($console, null, $startTime);
18
+		$profiler = new PhpQuickProfiler($console, null, $startTime);
19 19
 
20
-        $this->assertAttributeSame($console, 'console', $profiler);
21
-        $this->assertAttributeEquals($startTime, 'startTime', $profiler);
22
-    }
20
+		$this->assertAttributeSame($console, 'console', $profiler);
21
+		$this->assertAttributeEquals($startTime, 'startTime', $profiler);
22
+	}
23 23
 }
Please login to merge, or discard this patch.