Reacting to verbose rename

This commit is contained in:
John Luo 2015-12-08 15:48:10 -08:00
parent 8d18e1beac
commit e840ba06e2
1 changed files with 2 additions and 2 deletions

View File

@ -93,9 +93,9 @@ namespace E2ETests
//Check for a non existing item
response = await _httpClient.GetAsync(string.Format("Admin/StoreManager/GetAlbumIdFromName?albumName={0}", "123"));
//This action requires admin permissions. If events are fired this permission is granted
_logger.LogVerbose(await response.Content.ReadAsStringAsync());
_logger.LogDebug(await response.Content.ReadAsStringAsync());
Assert.Equal(HttpStatusCode.NotFound, response.StatusCode);
_logger.LogInformation("Middleware events were fired successfully");
}
}
}
}