1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-09-09 05:08:32 +00:00

TestRequest::take public

This commit is contained in:
Nikolay Kim 2019-03-02 16:04:43 -08:00
parent 0081b9d446
commit 00ea195601

View file

@ -133,7 +133,7 @@ impl TestRequest {
self
}
pub(crate) fn take(&mut self) -> TestRequest {
pub fn take(&mut self) -> TestRequest {
TestRequest(self.0.take())
}