Browse Source

fix test case name

namnguyen 11 months ago
parent
commit
2a9876ba93
1 changed files with 4 additions and 4 deletions
  1. 4 4
      tests/gui/e2e/test_metric_indicator.py

+ 4 - 4
tests/gui/e2e/test_metric_indicator.py

@@ -108,7 +108,7 @@ def test_format_converter_integer_to_binary(page: Page, gui: Gui, helpers):
 
 
 @pytest.mark.extension
-def test_format_converter_integer_to_signed_decimal(page: Page, gui: Gui, helpers):
+def test_format_converter_integer_to_signed_decimal_d_type(page: Page, gui: Gui, helpers):
     page_md = """
 <|50|metric|show_value=True|delta=20|format=%d|>
 """
@@ -123,7 +123,7 @@ def test_format_converter_integer_to_signed_decimal(page: Page, gui: Gui, helper
 
 
 @pytest.mark.extension
-def test_format_converter_integer_to_signed_decimal(page: Page, gui: Gui, helpers):
+def test_format_converter_integer_to_signed_decimal_i_type(page: Page, gui: Gui, helpers):
     page_md = """
 <|50|metric|show_value=True|delta=20|format=%i|>
 """
@@ -153,7 +153,7 @@ def test_format_converter_yields_float_using_science_notation(page: Page, gui: G
 
 
 @pytest.mark.extension
-def test_format_converter_yields_float_using_fixed_point_notation(page: Page, gui: Gui, helpers):
+def test_format_converter_yields_float_using_fixed_point_notation_f_type(page: Page, gui: Gui, helpers):
     page_md = """
 <|99.99|metric|show_value=True|delta=20|format=%.2f|>
 """
@@ -168,7 +168,7 @@ def test_format_converter_yields_float_using_fixed_point_notation(page: Page, gu
 
 
 @pytest.mark.extension
-def test_format_converter_yields_float_using_fixed_point_notation(page: Page, gui: Gui, helpers):
+def test_format_converter_yields_float_using_fixed_point_notation_g_type(page: Page, gui: Gui, helpers):
     page_md = """
 <|50.555|metric|show_value=True|delta=20|format=%.2g|>
 """