Skip to content

Commit

Permalink
fix order
Browse files Browse the repository at this point in the history
  • Loading branch information
KB-perByte committed Oct 4, 2023
1 parent c3225aa commit 41848d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changelogs/fragments/logging_global_order.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
bugfixes:
- ios_logging_global - fix configuration order to configure discriminator before buffer.
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ def _compare(self, want, have):
the `want` and `have` data with the `parsers` defined
for the Logging_global network resource.
"""
self._compare_complex_attrs(want, have)
self.compare(parsers=self.parsers, want=want, have=have)
self._compare_lists_attrs(want, have)
self._compare_complex_attrs(want, have)

def _compare_lists_attrs(self, want, have):
"""Compare list of dict"""
Expand Down

0 comments on commit 41848d3

Please sign in to comment.