@@ -98,7 +98,7 @@ TEST_CASE("YAML can be parsed from strings", "[parsing]") {
9898
9999TEST_CASE (" YAML can be parsed from files" , " [parsing][file]" ) {
100100 SECTION (" Parse valid file" ) {
101- YAMLNodeHandle node = yaml_parse_file (" ../lattice_files/ex.yaml" );
101+ YAMLNodeHandle node = yaml_parse_file (" ../lattice_files/ex.pals. yaml" );
102102
103103 REQUIRE (node != nullptr );
104104 REQUIRE (yaml_is_sequence (node));
@@ -108,7 +108,7 @@ TEST_CASE("YAML can be parsed from files", "[parsing][file]") {
108108 }
109109
110110 SECTION (" Parse non-existent file returns nullptr" ) {
111- YAMLNodeHandle node = yaml_parse_file (" nonexistent.yaml" );
111+ YAMLNodeHandle node = yaml_parse_file (" nonexistent.pals. yaml" );
112112 REQUIRE (node == nullptr );
113113 }
114114}
@@ -483,7 +483,7 @@ TEST_CASE("Scalar values can be edited directly", "[modification][scalar]") {
483483// ===========================================
484484
485485TEST_CASE (" YAML can be written to files" , " [io][file]" ) {
486- const char * test_file = " test_output.yaml" ;
486+ const char * test_file = " test_output.pals. yaml" ;
487487
488488 SECTION (" Write simple map" ) {
489489 YAMLNodeHandle map = yaml_create_map ();
@@ -600,11 +600,11 @@ TEST_CASE("YAML nodes can be cloned", "[clone]") {
600600}
601601
602602// ===========================================
603- // TEST SUITE: ex.yaml Structure Tests
603+ // TEST SUITE: ex.pals. yaml Structure Tests
604604// ===========================================
605605
606- TEST_CASE (" ex.yaml has expected structure" , " [ex.yaml][structure]" ) {
607- YAMLNodeHandle root = yaml_parse_file (" ../lattice_files/ex.yaml" );
606+ TEST_CASE (" ex.pals. yaml has expected structure" , " [ex.pals .yaml][structure]" ) {
607+ YAMLNodeHandle root = yaml_parse_file (" ../lattice_files/ex.pals. yaml" );
608608 REQUIRE (root != nullptr );
609609
610610 SECTION (" Root is a sequence" ) {
@@ -742,4 +742,4 @@ TEST_CASE("Edge cases are handled correctly", "[edge_cases]") {
742742 yaml_set_scalar_string (scalar, nullptr ); // Should not crash
743743 yaml_delete_node (scalar);
744744 }
745- }
745+ }
0 commit comments