@@ -24,7 +24,7 @@ public class WorkflowReaderTests
24
24
public async Task Read_Yaml_ShouldWork ( )
25
25
{
26
26
//arrange
27
- var yaml = File . ReadAllText ( Path . Combine ( "Resources" , "Workflows " , "operation.yaml" ) ) ;
27
+ var yaml = File . ReadAllText ( Path . Combine ( "Resources" , "workflows " , "operation.yaml" ) ) ;
28
28
29
29
//act
30
30
var parsedWorkflow = await this . Reader . ParseAsync ( yaml ) ;
@@ -54,7 +54,7 @@ public async Task Read_Yaml_ShouldWork()
54
54
public async Task Read_Json_ShouldWork ( )
55
55
{
56
56
//arrange
57
- var yaml = File . ReadAllText ( Path . Combine ( "Resources" , "Workflows " , "operation.json" ) ) ;
57
+ var yaml = File . ReadAllText ( Path . Combine ( "Resources" , "workflows " , "operation.json" ) ) ;
58
58
59
59
//act
60
60
var parsedWorkflow = await this . Reader . ParseAsync ( yaml ) ;
@@ -84,7 +84,7 @@ public async Task Read_Json_ShouldWork()
84
84
public async Task Read_Yaml_ExternalDefinitions_ShouldWork ( )
85
85
{
86
86
//arrange
87
- var yaml = File . ReadAllText ( Path . Combine ( "Resources" , "Workflows " , "externalref.yaml" ) ) ;
87
+ var yaml = File . ReadAllText ( Path . Combine ( "Resources" , "workflows " , "externalref.yaml" ) ) ;
88
88
89
89
//act
90
90
var workflow = await this . Reader . ParseAsync ( yaml ) ;
@@ -117,7 +117,7 @@ public async Task Read_Yaml_ExternalDefinitions_ShouldWork()
117
117
public async Task Read_Json_ExternalDefinitions_ShouldWork ( )
118
118
{
119
119
//arrange
120
- var yaml = File . ReadAllText ( Path . Combine ( "Resources" , "Workflows " , "externalref.json" ) ) ;
120
+ var yaml = File . ReadAllText ( Path . Combine ( "Resources" , "workflows " , "externalref.json" ) ) ;
121
121
122
122
//act
123
123
var workflow = await this . Reader . ParseAsync ( yaml , new WorkflowReaderOptions ( ) { LoadExternalDefinitions = true } ) ;
0 commit comments