Skip to content

Commit

Permalink
Updated tests after allowing upper_case_acronyms
Browse files Browse the repository at this point in the history
  • Loading branch information
lkirkwood committed Apr 21, 2024
1 parent 56642df commit e754ded
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions xsd-parser/tests/enumeration/expected.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#[allow(non_camel_case_types)]
#[allow(non_camel_case_types, clippy::upper_case_acronyms)]
#[derive(PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "tns", namespace = "tns: http://example.com")]
pub enum FooType {
Expand All @@ -15,7 +15,7 @@ impl Default for FooType {
}
impl Validate for FooType {}

#[allow(non_camel_case_types)]
#[allow(non_camel_case_types, clippy::upper_case_acronyms)]
#[derive(PartialEq, Debug, YaSerialize, YaDeserialize)]
#[yaserde(prefix = "tns", namespace = "tns: http://example.com")]
pub enum FooType1 {
Expand Down
2 changes: 1 addition & 1 deletion xsd-parser/tests/union/expected.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#[allow(non_camel_case_types)]
#[allow(non_camel_case_types, clippy::upper_case_acronyms)]
#[derive(PartialEq, Debug, UtilsUnionSerDe)]
pub enum FooType {
int(i32),
Expand Down

0 comments on commit e754ded

Please sign in to comment.