We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6bd62b commit 2d55fadCopy full SHA for 2d55fad
src/oxide_controller/config.rs
@@ -146,7 +146,10 @@ mod test {
146
if let LoadError::Parse(error) = error {
147
assert_eq!(error.line_col(), Some((0, 5)));
148
} else {
149
- panic!("Got an unexpected error, expected Parse but got {:?}", error);
+ panic!(
150
+ "Got an unexpected error, expected Parse but got {:?}",
151
+ error
152
+ );
153
}
154
155
@@ -162,7 +165,10 @@ mod test {
162
165
163
166
assert_eq!(error.line_col(), None);
164
167
168
169
170
171
172
173
174
0 commit comments