File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ type Workflow struct {
44
44
CutoverBy * Actor `json:"cutover_by"`
45
45
ReversedCutoverBy * Actor `json:"reversed_cutover_by"`
46
46
47
- Streams * [] WorkflowStream `json:"streams"`
48
- Tables * [] WorkflowTable `json:"tables"`
47
+ Streams [] * WorkflowStream `json:"streams"`
48
+ Tables [] * WorkflowTable `json:"tables"`
49
49
VDiff * WorkflowVDiff `json:"vdiff"`
50
50
}
51
51
Original file line number Diff line number Diff line change @@ -69,6 +69,6 @@ func TestWorkflows_Get(t *testing.T) {
69
69
c .Assert (workflow .TargetKeyspace .Name , qt .Equals , "target-keyspace" )
70
70
c .Assert (workflow .Branch .Name , qt .Equals , "branch" )
71
71
c .Assert (workflow .VDiff .State , qt .Equals , "pending" )
72
- c .Assert (len (* workflow .Streams ), qt .Equals , 1 )
73
- c .Assert (len (* workflow .Tables ), qt .Equals , 1 )
72
+ c .Assert (len (workflow .Streams ), qt .Equals , 1 )
73
+ c .Assert (len (workflow .Tables ), qt .Equals , 1 )
74
74
}
You can’t perform that action at this time.
0 commit comments