Skip to content

Commit

Permalink
Fix LRO issue in C# code gen
Browse files Browse the repository at this point in the history
  • Loading branch information
Qinyuan Wan committed May 11, 2016
1 parent cfdf8a8 commit 630d39b
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

0 comments on commit 630d39b

Please sign in to comment.