Skip to content

Commit a813716

Browse files
committed
add prefix to Property because no typealias
1 parent 99cca8e commit a813716

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Tests/FoundationEssentialsTests/ProgressManager/ProgressManagerPropertiesTests.swift

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ import Testing
384384
extension ProgressManager.Properties {
385385

386386
var counter: Counter.Type { Counter.self }
387-
struct Counter: Sendable, Property {
387+
struct Counter: Sendable, ProgressManager.Property {
388388

389389
typealias Value = Int
390390

@@ -488,7 +488,7 @@ extension ProgressManager.Properties {
488488

489489
extension ProgressManager.Properties {
490490
var byteSize: ByteSize.Type { ByteSize.self }
491-
struct ByteSize: Sendable, Property {
491+
struct ByteSize: Sendable, ProgressManager.Property {
492492

493493
typealias Value = UInt64
494494

@@ -594,7 +594,7 @@ func doSomethingTwoLevels(subprogress: consuming Subprogress) async {
594594
extension ProgressManager.Properties {
595595

596596
var justADouble: JustADouble.Type { JustADouble.self }
597-
struct JustADouble: Sendable, Property {
597+
struct JustADouble: Sendable, ProgressManager.Property {
598598

599599
typealias Value = Double
600600

@@ -697,7 +697,7 @@ extension ProgressManager.Properties {
697697
extension ProgressManager.Properties {
698698

699699
var downloadedFile: DownloadedFile.Type { DownloadedFile.self }
700-
struct DownloadedFile: Sendable, Property {
700+
struct DownloadedFile: Sendable, ProgressManager.Property {
701701

702702
typealias Value = String?
703703

@@ -797,7 +797,7 @@ extension ProgressManager.Properties {
797797
extension ProgressManager.Properties {
798798

799799
var processingFile: ProcessingFile.Type { ProcessingFile.self }
800-
struct ProcessingFile: Sendable, Property {
800+
struct ProcessingFile: Sendable, ProgressManager.Property {
801801

802802
typealias Value = String?
803803

@@ -896,7 +896,7 @@ extension ProgressManager.Properties {
896896

897897
extension ProgressManager.Properties {
898898
var imageURL: ImageURL.Type { ImageURL.self }
899-
struct ImageURL: Sendable, Property {
899+
struct ImageURL: Sendable, ProgressManager.Property {
900900

901901
typealias Value = URL?
902902

@@ -989,7 +989,7 @@ extension ProgressManager.Properties {
989989

990990
extension ProgressManager.Properties {
991991
var totalPixelCount: TotalPixelCount.Type { TotalPixelCount.self }
992-
struct TotalPixelCount: Sendable, Property {
992+
struct TotalPixelCount: Sendable, ProgressManager.Property {
993993
typealias Value = UInt64
994994

995995
typealias Summary = [UInt64]
@@ -1082,7 +1082,7 @@ extension ProgressManager.Properties {
10821082

10831083
extension ProgressManager.Properties {
10841084
var viralIndeterminate: ViralIndeterminate.Type { ViralIndeterminate.self }
1085-
struct ViralIndeterminate: Sendable, Property {
1085+
struct ViralIndeterminate: Sendable, ProgressManager.Property {
10861086
typealias Value = Int
10871087

10881088
typealias Summary = Int
@@ -1183,7 +1183,7 @@ extension ProgressManager.Properties {
11831183

11841184
extension ProgressManager.Properties {
11851185
var processTime: ProcessTime.Type { ProcessTime.self }
1186-
struct ProcessTime: Sendable, Property {
1186+
struct ProcessTime: Sendable, ProgressManager.Property {
11871187

11881188
typealias Value = Duration
11891189

0 commit comments

Comments
 (0)