Skip to content

Commit

Permalink
Merge pull request #233 from mvz/fixup-multi-namespace
Browse files Browse the repository at this point in the history
Fix build failure resulting from namespace collision fix
  • Loading branch information
mvz committed May 3, 2024
2 parents 7a2374f + 020c34d commit a34075a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This configuration was generated by
# `rubocop --auto-gen-config --no-offense-counts --no-auto-gen-timestamp`
# using RuboCop version 1.54.2.
# using RuboCop version 1.63.4.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
Expand All @@ -14,7 +14,7 @@ Lint/EmptyClass:

# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
Metrics/AbcSize:
Max: 42
Max: 43

# Configuration parameters: AllowedMethods, AllowedPatterns.
Metrics/CyclomaticComplexity:
Expand Down
3 changes: 2 additions & 1 deletion spec/features/mixed_namespaces_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ class RootCollision
<<~XML
<?xml version="1.0" encoding="UTF-8"?>
<address location='home' xmlns="http://www.unicornland.com/prefix"
xmlns:override="http://override.com/breaks">
xmlns:override="http://override.com/breaks"
xmlns:different="http://www.trollcountry.com/different">
<street>Milchstrasse</street>
<street>Another Street</street>
<housenumber xmlns="http://override.com/breaks">23</housenumber>
Expand Down

0 comments on commit a34075a

Please sign in to comment.