format: libpaket.utils
This commit is contained in:
parent
06c9342ea7
commit
8573be6e23
1 changed files with 4 additions and 4 deletions
|
@ -20,7 +20,8 @@ impl CookieHeaderValueBuilder {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn add_dhlcs(mut self, dhli: &DHLIdToken) -> Self {
|
pub fn add_dhlcs(mut self, dhli: &DHLIdToken) -> Self {
|
||||||
self.list.push(("dhlcs".to_string(), dhli.get_dhlcs().to_string()));
|
self.list
|
||||||
|
.push(("dhlcs".to_string(), dhli.get_dhlcs().to_string()));
|
||||||
|
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
@ -54,7 +55,7 @@ macro_rules! mini_assert_api_eq {
|
||||||
if $a != $b {
|
if $a != $b {
|
||||||
return Err(crate::LibraryError::APIChange);
|
return Err(crate::LibraryError::APIChange);
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
macro_rules! mini_assert_api {
|
macro_rules! mini_assert_api {
|
||||||
|
@ -62,10 +63,9 @@ macro_rules! mini_assert_api {
|
||||||
if !$a {
|
if !$a {
|
||||||
return Err(crate::LibraryError::APIChange);
|
return Err(crate::LibraryError::APIChange);
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
macro_rules! mini_assert_inval {
|
macro_rules! mini_assert_inval {
|
||||||
($a: expr) => {
|
($a: expr) => {
|
||||||
if !$a {
|
if !$a {
|
||||||
|
|
Loading…
Reference in a new issue