@@ -55,7 +55,7 @@ public void Crate_creates_store_function_for_complex_type_function_import()
5555 var model = new DbModelBuilder ( )
5656 . Build ( new DbProviderInfo ( "System.Data.SqlClient" , "2012" ) ) ;
5757
58- var enumType = EnumType . Create ( "TestEnum" , "TestNs" , PrimitiveType . GetEdmPrimitiveType ( PrimitiveTypeKind . Int32 ) , false , new EnumMember [ ] { EnumMember . Create ( "foo" , 1 , null ) } , null ) ;
58+ var enumType = EnumType . Create ( "TestEnum" , "TestNs" , PrimitiveType . GetEdmPrimitiveType ( PrimitiveTypeKind . Int32 ) , false , new [ ] { EnumMember . Create ( "foo" , 1 , null ) } , null ) ;
5959
6060 var complexType = ComplexType . Create ( "CT" , "ns" , DataSpace . CSpace ,
6161 new [ ]
@@ -73,7 +73,7 @@ public void Crate_creates_store_function_for_complex_type_function_import()
7373 "f" ,
7474 new [ ]
7575 { new ParameterDescriptor ( "p1" , PrimitiveType . GetEdmPrimitiveType ( PrimitiveTypeKind . String ) , null , false ) } ,
76- new EdmType [ ] { complexType } ,
76+ new EdmType [ ] { complexType } ,
7777 "ResultCol" ,
7878 "dbo" ,
7979 StoreFunctionKind . StoredProcedure ,
@@ -133,7 +133,6 @@ public void Crate_creates_store_function_for_complex_type_withEnum_in_TableValue
133133 Assert . True ( storeFunction . IsComposableAttribute ) ;
134134 }
135135
136-
137136 [ Fact ]
138137 public void Crate_creates_store_function_for_enum_type_function_import ( )
139138 {
@@ -211,7 +210,7 @@ public void StoreFunctionBuilder_uses_default_namespace_if_no_entities()
211210 "f" ,
212211 new [ ]
213212 { new ParameterDescriptor ( "p1" , PrimitiveType . GetEdmPrimitiveType ( PrimitiveTypeKind . String ) , null , false ) } ,
214- new EdmType [ ] { PrimitiveType . GetEdmPrimitiveType ( PrimitiveTypeKind . Int64 ) } ,
213+ new EdmType [ ] { PrimitiveType . GetEdmPrimitiveType ( PrimitiveTypeKind . Int64 ) } ,
215214 "ResultCol" , "dbo" , StoreFunctionKind . TableValuedFunction , isBuiltIn : null ) ;
216215
217216 var storeFunction = new StoreFunctionBuilder ( model , "docs" ) . Create ( functionDescriptor ) ;
@@ -255,7 +254,7 @@ public void Exception_thrown_if_provided_store_type_invalid()
255254 new ParameterDescriptor (
256255 "p1" , PrimitiveType . GetEdmPrimitiveType ( PrimitiveTypeKind . String ) , "json" , true ) ,
257256 } ,
258- new EdmType [ ] { PrimitiveType . GetEdmPrimitiveType ( PrimitiveTypeKind . Int64 ) } ,
257+ new EdmType [ ] { PrimitiveType . GetEdmPrimitiveType ( PrimitiveTypeKind . Int64 ) } ,
259258 "ResultCol" , "dbo" , StoreFunctionKind . StoredProcedure , isBuiltIn : null ) ;
260259
261260 Assert . Contains ( "'json'" ,
0 commit comments