Reacting to verbose rename
This commit is contained in:
parent
8d18e1beac
commit
e840ba06e2
|
|
@ -93,9 +93,9 @@ namespace E2ETests
|
||||||
//Check for a non existing item
|
//Check for a non existing item
|
||||||
response = await _httpClient.GetAsync(string.Format("Admin/StoreManager/GetAlbumIdFromName?albumName={0}", "123"));
|
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
|
//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);
|
Assert.Equal(HttpStatusCode.NotFound, response.StatusCode);
|
||||||
_logger.LogInformation("Middleware events were fired successfully");
|
_logger.LogInformation("Middleware events were fired successfully");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue