Skip to content

Commit

Permalink
chore(merge): Merge with main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
lquerel committed Dec 17, 2024
1 parent c0609b5 commit 6ba427c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions crates/weaver_semconv/src/group.rs
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,9 @@ mod tests {
prefix: "".to_owned(),
extends: None,
stability: Some(Stability::Deprecated),
deprecated: Some("true".to_owned()),
deprecated: Some(Deprecated::Deprecated {
note: "deprecated".to_owned(),
}),
attributes: vec![AttributeSpec::Id {
id: "test".to_owned(),
r#type: AttributeType::Enum {
Expand All @@ -697,7 +699,9 @@ mod tests {
},
brief: None,
stability: Some(Stability::Deprecated),
deprecated: Some("true".to_owned()),
deprecated: Some(Deprecated::Deprecated {
note: "deprecated".to_owned(),
}),
examples: Some(Examples::String("test".to_owned())),
tag: None,
requirement_level: Default::default(),
Expand Down Expand Up @@ -735,7 +739,9 @@ mod tests {
},
brief: None,
stability: Some(Stability::Deprecated),
deprecated: Some("true".to_owned()),
deprecated: Some(Deprecated::Deprecated {
note: "deprecated".to_owned(),
}),
examples: Some(Examples::String("test".to_owned())),
tag: None,
requirement_level: Default::default(),
Expand Down

0 comments on commit 6ba427c

Please sign in to comment.