/**
  * @param CoreApiTester $I
  */
 public function getBrandListWithoutMetaTest(\CoreApiTester $I)
 {
     $I->wantTo('BRANDS: GET list of brands without meta data');
     $I->sendGET('/api/static/brands', $this->apikeyParam);
     $I->seeResponseCodeIs(200);
     $I->seeResponseIsJson();
     $I->dontSeeResponseJsonMatchesJsonPath('$.meta');
 }