Skip to content
This repository has been archived by the owner on Aug 10, 2022. It is now read-only.

Commit

Permalink
Fix delete test method
Browse files Browse the repository at this point in the history
  • Loading branch information
chubbsnes65 committed Mar 8, 2017
1 parent 100b5e0 commit c36b3ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Unosquare.Labs.EmbedIO.JsonServer/JsonServerModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public JsonServerModule(string basePath = "/api/", string jsonPath = null)
if (verb == HttpVerbs.Delete)
{
var array = (IList<object>) table;
var array = (ICollection<object>) table;
array.Remove(row);
ThreadPool.QueueUserWorkItem(UpdateDataStore);
Expand Down

0 comments on commit c36b3ea

Please sign in to comment.