Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Diego Hurtado <[email protected]>
  • Loading branch information
aabmass and ocelotl committed May 28, 2024
commit 07aff6261f6e8e2e775b88cfb1c4eeba8f45b831
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@


class TestMapping(TestCase):
def testsanitize_full_name(self):
def test_sanitize_full_name(self):
self.assertEqual(
sanitize_full_name("valid_metric_name"), "valid_metric_name"
)
Expand Down Expand Up @@ -53,7 +53,7 @@ def testsanitize_full_name(self):
self.assertEqual(sanitize_full_name("TestString"), "TestString")
self.assertEqual(sanitize_full_name("aAbBcC_12_oi"), "aAbBcC_12_oi")

def testsanitize_attribute(self):
def test_sanitize_attribute(self):
self.assertEqual(
sanitize_attribute("valid_attr_key"), "valid_attr_key"
)
Expand Down