@@ -616,7 +616,6 @@ def test_create_json_schema_with_display_names(
616616 assert expected_json == test_json
617617
618618
619-
620619def test_create_json_schema_with_no_column_type (
621620 dmge : DataModelGraphExplorer , test_directory : str
622621) -> None :
@@ -627,9 +626,7 @@ def test_create_json_schema_with_no_column_type(
627626 datatype = "JSONSchemaComponent"
628627 test_file = f"test.{ datatype } .display_names_schema.json"
629628 test_path = os .path .join (test_directory , test_file )
630- expected_path = (
631- f"tests/data/expected_jsonschemas/expected.{ datatype } .schema.json"
632- )
629+ expected_path = f"tests/data/expected_jsonschemas/expected.{ datatype } .schema.json"
633630 create_json_schema (
634631 dmge = dmge ,
635632 datatype = datatype ,
@@ -644,6 +641,7 @@ def test_create_json_schema_with_no_column_type(
644641 test_json = json .load (file2 )
645642 assert expected_json == test_json
646643
644+
647645def test_create_json_schema_with_column_type (
648646 dmge_column_type : DataModelGraphExplorer , test_directory : str
649647) -> None :
@@ -654,9 +652,7 @@ def test_create_json_schema_with_column_type(
654652 datatype = "JSONSchemaComponent"
655653 test_file = f"test.{ datatype } .display_names_schema.json"
656654 test_path = os .path .join (test_directory , test_file )
657- expected_path = (
658- f"tests/data/expected_jsonschemas/expected.{ datatype } .schema.json"
659- )
655+ expected_path = f"tests/data/expected_jsonschemas/expected.{ datatype } .schema.json"
660656 create_json_schema (
661657 dmge = dmge_column_type ,
662658 datatype = datatype ,
0 commit comments