@@ -30,8 +30,8 @@ discard block |
||
| 30 | 30 | public function setUp() |
| 31 | 31 | { |
| 32 | 32 | $this->cache = $this->getMockBuilder(\Illuminate\Cache\Repository::class) |
| 33 | - ->disableOriginalConstructor() |
|
| 34 | - ->getMock(); |
|
| 33 | + ->disableOriginalConstructor() |
|
| 34 | + ->getMock(); |
|
| 35 | 35 | |
| 36 | 36 | $this->processor = new Processor(new Schema()); |
| 37 | 37 | $this->service = new GraphQLService($this->processor, $this->cache); |
@@ -41,9 +41,9 @@ discard block |
||
| 41 | 41 | public function testGetProcessor() |
| 42 | 42 | { |
| 43 | 43 | $this->cache->expects($this->any()) |
| 44 | - ->method('get') |
|
| 45 | - ->with(GraphQLService::PROCESSOR_CACHE_KEY) |
|
| 46 | - ->willReturn($this->processor); |
|
| 44 | + ->method('get') |
|
| 45 | + ->with(GraphQLService::PROCESSOR_CACHE_KEY) |
|
| 46 | + ->willReturn($this->processor); |
|
| 47 | 47 | |
| 48 | 48 | $this->assertEquals($this->processor, $this->service->getProcessor()); |
| 49 | 49 | } |