Made a small tweak to the "tests" computed property of the String+Computed extension in the Package file.

This commit is contained in:
Javier Cicchelli 2023-08-11 23:32:41 +02:00
parent 4ca0108a9c
commit 683900afeb

View File

@ -132,6 +132,6 @@ private extension String {
private extension String { private extension String {
var tests: String { var tests: String {
"\(self)Tests" self + "Tests"
} }
} }