Skip to content

Commit 89d54b9

Browse files
committed
more shorter lines
1 parent 102705d commit 89d54b9

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

test/fpm_test/test_manifest.f90

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module test_manifest
33
use fpm_filesystem, only: get_temp_filename
44
use testsuite, only : new_unittest, unittest_t, error_t, test_failed, check_string
55
use fpm_manifest
6-
use fpm_manifest_profile, only: profile_config_t, find_profile
6+
use fpm_manifest_profile, only: profile_config_t
77
use fpm_manifest_platform, only: platform_config_t
88
use fpm_manifest_feature_collection, only: feature_collection_t
99
use fpm_compiler, only: id_gcc, id_intel_classic_nix
@@ -81,13 +81,17 @@ subroutine collect_manifest(testsuite)
8181
& new_unittest("preprocess-wrongkey", test_preprocess_wrongkey, should_fail=.true.), &
8282
& new_unittest("preprocessors-empty", test_preprocessors_empty, should_fail=.true.), &
8383
& new_unittest("macro-parsing", test_macro_parsing, should_fail=.false.), &
84-
& new_unittest("macro-parsing-dependency", test_macro_parsing_dependency, should_fail=.false.), &
84+
& new_unittest("macro-parsing-dependency", &
85+
& test_macro_parsing_dependency, should_fail=.false.), &
8586
& new_unittest("feature-collection-basic", test_feature_collection_basic), &
8687
& new_unittest("feature-collection-flexible", test_feature_collection_flexible), &
87-
& new_unittest("feature-collection-invalid", test_feature_collection_invalid, should_fail=.true.), &
88-
& new_unittest("feature-collection-duplicates", test_feature_collection_duplicates, should_fail=.true.), &
88+
& new_unittest("feature-collection-invalid", &
89+
& test_feature_collection_invalid, should_fail=.true.), &
90+
& new_unittest("feature-collection-duplicates", &
91+
& test_feature_collection_duplicates, should_fail=.true.), &
8992
& new_unittest("feature-collection-extract", test_feature_collection_extract), &
90-
& new_unittest("feature-collection-platform-validation", test_feature_collection_platform_validation, should_fail=.true.), &
93+
& new_unittest("feature-collection-platform-validation", &
94+
& test_feature_collection_platform_validation, should_fail=.true.), &
9195
& new_unittest("feature-collection-complex", test_feature_collection_complex) &
9296
& ]
9397

0 commit comments

Comments
 (0)