revert storage folder

change testing redis path
This commit is contained in:
Rezza Kurniawan 2020-04-03 14:01:04 +07:00
parent 11eda5ff90
commit ad7bcfaec2
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
<?php
namespace Superbalist\LaravelPrometheusExporter;
namespace Superbalist\LaravelPrometheusExporter\Storage;
use Prometheus\Storage\Adapter;
use Prometheus\Counter;

View file

@ -5,7 +5,7 @@ namespace Tests;
use PHPUnit\Framework\TestCase;
use Prometheus\Storage\APC;
use Prometheus\Storage\InMemory;
use Prometheus\Storage\Redis;
use Superbalist\LaravelPrometheusExporter\Storage\Redis;
use Superbalist\LaravelPrometheusExporter\StorageAdapterFactory;
class StorageAdapterFactoryTest extends TestCase