Skip to content

Commit

Permalink
Merge pull request Azure#1023 from csmengwan/master
Browse files Browse the repository at this point in the history
Fix LRO issue in C# code gen
  • Loading branch information
tbombach committed May 17, 2016
2 parents 689423c + 8e26ebe commit cab9d04
Show file tree
Hide file tree
Showing 5 changed files with 210 additions and 212 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -774,6 +774,12 @@ private IEnumerable<HttpResponseMessage> MockPutOperaionWithoutProvisioningState
};

yield return response1;

var response2 = new HttpResponseMessage(HttpStatusCode.OK)
{
Content = new StringContent("{ \"properties\": { }, \"id\": \"100\", \"name\": \"foo\" }")
};
yield return response2;
}

private IEnumerable<HttpResponseMessage> MockPutOperaionWitNonResource()
Expand Down
Loading

0 comments on commit cab9d04

Please sign in to comment.