This is an automated email from the ASF dual-hosted git repository.

mmartell pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-dotnet-core-client.git


The following commit(s) were added to refs/heads/develop by this push:
     new 1de160e  Fix search/replace error
1de160e is described below

commit 1de160ed8fe2e047c415fb13d7ab5aa4f19ed070
Author: Mike Martell <[email protected]>
AuthorDate: Wed Jun 2 08:00:45 2021 -0700

    Fix search/replace error
---
 NetCore.Test/CacheFactoryUnitTest.cs | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/NetCore.Test/CacheFactoryUnitTest.cs 
b/NetCore.Test/CacheFactoryUnitTest.cs
index 54ea95b..cdcd581 100644
--- a/NetCore.Test/CacheFactoryUnitTest.cs
+++ b/NetCore.Test/CacheFactoryUnitTest.cs
@@ -2,12 +2,12 @@ using System;
 using Apache.Geode.NetCore;
 using Xunit;
 
-namespace GemfireDotNetFact
+namespace GemfireDotNetTest
 {
-    public class CacheFactoryUnitFacts 
+    public class CacheFactoryUnitTests 
     {
         [Fact]
-        public void FactCreateFactory()
+        public void TestCreateFactory()
         {
             using (var client = new Client())
             {
@@ -19,7 +19,7 @@ namespace GemfireDotNetFact
         }
         
         [Fact]
-        public void FactCacheFactoryGetVersion()
+        public void TestCacheFactoryGetVersion()
         {
             using (var client = new Client())
             {
@@ -32,7 +32,7 @@ namespace GemfireDotNetFact
         }
         
         [Fact]
-        public void FactCacheFactoryGetProductDescription()
+        public void TestCacheFactoryGetProductDescription()
         {
             using (var client = new Client())
             {
@@ -45,7 +45,7 @@ namespace GemfireDotNetFact
         }
         
         [Fact]
-        public void FactCacheFactorySetPdxIgnoreUnreadFields()
+        public void TestCacheFactorySetPdxIgnoreUnreadFields()
         {
             using (var client = new Client())
             {
@@ -58,7 +58,7 @@ namespace GemfireDotNetFact
         }
         
         [Fact]
-        public void FactCacheFactorySetPdxReadSerialized()
+        public void TestCacheFactorySetPdxReadSerialized()
         {
             using (var client = new Client())
             {
@@ -71,7 +71,7 @@ namespace GemfireDotNetFact
         }
         
         [Fact]
-        public void FactCacheFactoryCreateCache()
+        public void TestCacheFactoryCreateCache()
         {
             using (var client = new Client())
             {
@@ -86,7 +86,7 @@ namespace GemfireDotNetFact
         }
         
         [Fact]
-        public void FactCacheFactorySetProperty()
+        public void TestCacheFactorySetProperty()
         {
             using (var client = new Client())
             {

Reply via email to