Author: roberto
Date: Fri Jun 10 20:33:07 2005
New Revision: 190067

URL: http://svn.apache.org/viewcvs?rev=190067&view=rev
Log:
~Updated C# IBatisNet.Common ConfigWatcherTest.cs for typos (so that the Test 
assembly can build!)

Modified:
    
ibatis/trunk/cs/mapper/IBatisNet.Common.Test/NUnit/CommonTests/ConfigWatcher/ConfigWatcherTest.cs

Modified: 
ibatis/trunk/cs/mapper/IBatisNet.Common.Test/NUnit/CommonTests/ConfigWatcher/ConfigWatcherTest.cs
URL: 
http://svn.apache.org/viewcvs/ibatis/trunk/cs/mapper/IBatisNet.Common.Test/NUnit/CommonTests/ConfigWatcher/ConfigWatcherTest.cs?rev=190067&r1=190066&r2=190067&view=diff
==============================================================================
--- 
ibatis/trunk/cs/mapper/IBatisNet.Common.Test/NUnit/CommonTests/ConfigWatcher/ConfigWatcherTest.cs
 (original)
+++ 
ibatis/trunk/cs/mapper/IBatisNet.Common.Test/NUnit/CommonTests/ConfigWatcher/ConfigWatcherTest.cs
 Fri Jun 10 20:33:07 2005
@@ -63,8 +63,8 @@
                                TimerCallback callBakDelegate = new 
TimerCallback( ConfigWatcherTest.OnConfigFileChange );
 
                                StateConfig state = new StateConfig();
-                               state.fileName = fileName;
-                               state.configureHandler = configureDelegate;
+                               state.FileName = fileName;
+                               state.ConfigureHandler = configureDelegate;
 
                                new ConfigWatcherHandler( callBakDelegate, 
state );
 
@@ -94,7 +94,7 @@
                        public static void OnConfigFileChange(object obj)
                        {
                                StateConfig state = (StateConfig)obj;
-                               state.configureHandler(null);
+                               state.ConfigureHandler(null);
                        }
 
 


Reply via email to