diff --git a/test/raven-integration/Search/SearchOps.cs b/test/raven-integration/Search/SearchOps.cs index bd3171c0..dd561b9c 100644 --- a/test/raven-integration/Search/SearchOps.cs +++ b/test/raven-integration/Search/SearchOps.cs @@ -378,7 +378,7 @@ namespace raven_integration D.tagToObjectType = 2;//widget a = await Util.PostAsync("TagMap", await Util.GetTokenAsync("BizAdminFull"), D.ToString()); Util.ValidateDataReturnResponseOk(a); - + //CREATE A WIDGET WITH TAG BUT NOT SEARCH PHRASE D = new JObject(); @@ -392,7 +392,7 @@ namespace raven_integration Util.ValidateDataReturnResponseOk(a); long NoPhraseMatchWidgetInTagId = a.ObjectResponse["result"]["id"].Value(); - //TAG the tag only no phrase with the fresh tag + //TAG the tag only no phrase with the fresh tag D = new JObject(); D.tagId = TagId; D.tagToObjectId = NoPhraseMatchWidgetInTagId; @@ -400,7 +400,7 @@ namespace raven_integration a = await Util.PostAsync("TagMap", await Util.GetTokenAsync("BizAdminFull"), D.ToString()); Util.ValidateDataReturnResponseOk(a); - + //CREATE FIRST TEST USER WITH PHRASE IN NAME BUT NO TAG D = new JObject(); @@ -449,18 +449,6 @@ namespace raven_integration }//eot - - - //TODO: TAG SEARCH ALONE TEST - - //TODO: TAG PLUS SEARCH PHRASE TEST - - //TODO: TAG PLUS REGULAR SEARCH PHRASE PLUS WILDCARD PHRASE TEST - - //TODO: TAG PLUS USER TEST OR MODIFY ALL OF THE ABOVE TO INCLUDE A USER INSTEAD OF A SECOND TEST WIDGET - - - //================================================== }//eoc