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 a2c9fe0 commit 027f6b0Copy full SHA for 027f6b0
src/tools/jsondoclint/src/validator/tests.rs
@@ -163,7 +163,7 @@ fn errors_on_missing_path() {
163
sig: FunctionSignature {
164
inputs: vec![],
165
output: Some(Type::ResolvedPath(Path {
166
- name: "Bar".to_owned(),
+ path: "Bar".to_owned(),
167
id: Id(1),
168
args: None,
169
})),
@@ -191,7 +191,7 @@ fn errors_on_missing_path() {
191
192
check(&krate, &[Error {
193
kind: ErrorKind::Custom(
194
- r#"No entry in '$.paths' for Path { name: "Bar", id: Id(1), args: None }"#.to_owned(),
+ r#"No entry in '$.paths' for Path { path: "Bar", id: Id(1), args: None }"#.to_owned(),
195
),
196
197
}]);
0 commit comments