mirror of
https://github.com/fluencelabs/sqlite-wasm-connector
synced 2025-04-02 22:41:06 +00:00
Change Display for ResultCode
This commit is contained in:
parent
29b5b9f643
commit
b10d44d0c0
@ -62,8 +62,8 @@ declare!(
|
|||||||
impl Display for ResultCode {
|
impl Display for ResultCode {
|
||||||
fn fmt(&self, formatter: &mut Formatter) -> fmt::Result {
|
fn fmt(&self, formatter: &mut Formatter) -> fmt::Result {
|
||||||
match *self {
|
match *self {
|
||||||
ResultCode::Unknown => write!(formatter, "an unknown SQLite code"),
|
ResultCode::Unknown => write!(formatter, "an unknown SQLite result code"),
|
||||||
_ => write!(formatter, "SQLite code {}", *self as isize),
|
_ => write!(formatter, "SQLite result code {}", *self as isize),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -75,7 +75,9 @@ mod tests {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn fmt() {
|
fn fmt() {
|
||||||
assert_eq!(format!("{}", ResultCode::OK), String::from("SQLite code 0"));
|
assert_eq!(format!("{}", ResultCode::OK),
|
||||||
assert_eq!(format!("{}", code_from_raw(777)), String::from("an unknown SQLite code"));
|
String::from("SQLite result code 0"));
|
||||||
|
assert_eq!(format!("{}", code_from_raw(777)),
|
||||||
|
String::from("an unknown SQLite result code"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user