Skip to content

Commit

Permalink
Add changes
Browse files Browse the repository at this point in the history
Signed-off-by: Divya Madala <[email protected]>
  • Loading branch information
Divyaasm committed Sep 11, 2024
1 parent 3fe8fa6 commit a2fedff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validation_workflow/rpm/validation_rpm.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def validate_metadata(self, product_type: str) -> None:
elif value == 'arm64':
assert meta_map.get(key) == 'aarch64'
else:
assert meta_map.get(key) == value
assert meta_map.get(key).strip() == value.strip()
print(repr(meta_map.get(key)), repr(value))
print(meta_map.get(key), type(meta_map.get(key)))
print(value, type(value))
Expand Down

0 comments on commit a2fedff

Please sign in to comment.