@@ -24,8 +24,8 @@ public void Partition_sequence_returns_sequence()
24
24
} ;
25
25
var specs = new [ ]
26
26
{
27
- new OptionSpecification ( string . Empty , "stringvalue" , false , string . Empty , Maybe . Nothing < int > ( ) , Maybe . Nothing < int > ( ) , '\0 ' , null , string . Empty , string . Empty , new List < string > ( ) , typeof ( string ) , TargetType . Scalar , Maybe . Nothing < string > ( ) ) ,
28
- new OptionSpecification ( "i" , string . Empty , false , string . Empty , Maybe . Just ( 3 ) , Maybe . Just ( 4 ) , '\0 ' , null , string . Empty , string . Empty , new List < string > ( ) , typeof ( IEnumerable < int > ) , TargetType . Sequence , Maybe . Nothing < string > ( ) )
27
+ new OptionSpecification ( string . Empty , "stringvalue" , false , string . Empty , Maybe . Nothing < int > ( ) , Maybe . Nothing < int > ( ) , '\0 ' , null , string . Empty , string . Empty , new List < string > ( ) , typeof ( string ) , TargetType . Scalar , string . Empty ) ,
28
+ new OptionSpecification ( "i" , string . Empty , false , string . Empty , Maybe . Just ( 3 ) , Maybe . Just ( 4 ) , '\0 ' , null , string . Empty , string . Empty , new List < string > ( ) , typeof ( IEnumerable < int > ) , TargetType . Sequence , string . Empty )
29
29
} ;
30
30
31
31
// Exercize system
@@ -51,8 +51,8 @@ public void Partition_sequence_returns_sequence_with_duplicates()
51
51
} ;
52
52
var specs = new [ ]
53
53
{
54
- new OptionSpecification ( string . Empty , "stringvalue" , false , string . Empty , Maybe . Nothing < int > ( ) , Maybe . Nothing < int > ( ) , '\0 ' , null , string . Empty , string . Empty , new List < string > ( ) , typeof ( string ) , TargetType . Scalar , Maybe . Nothing < string > ( ) ) ,
55
- new OptionSpecification ( "i" , string . Empty , false , string . Empty , Maybe . Just ( 3 ) , Maybe . Just ( 4 ) , '\0 ' , null , string . Empty , string . Empty , new List < string > ( ) , typeof ( IEnumerable < int > ) , TargetType . Sequence , Maybe . Nothing < string > ( ) )
54
+ new OptionSpecification ( string . Empty , "stringvalue" , false , string . Empty , Maybe . Nothing < int > ( ) , Maybe . Nothing < int > ( ) , '\0 ' , null , string . Empty , string . Empty , new List < string > ( ) , typeof ( string ) , TargetType . Scalar , string . Empty ) ,
55
+ new OptionSpecification ( "i" , string . Empty , false , string . Empty , Maybe . Just ( 3 ) , Maybe . Just ( 4 ) , '\0 ' , null , string . Empty , string . Empty , new List < string > ( ) , typeof ( IEnumerable < int > ) , TargetType . Sequence , string . Empty )
56
56
} ;
57
57
58
58
// Exercize system
0 commit comments