diff options
author | Bernard Normier <bernard@zeroc.com> | 2021-01-14 12:12:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-14 12:12:47 -0500 |
commit | 05edde5bcae0e5ee6b31bdb9923a8e5bb80fede1 (patch) | |
tree | fae64c8758ed0226c7bc005ce9372c6a511b643c /csharp/test/Ice/admin/TestI.cs | |
parent | Moved alias test from Slice to Ice test directory. (diff) | |
download | ice-before_streamline.tar.bz2 ice-before_streamline.tar.xz ice-before_streamline.zip |
Switch to Async skeletons in Ice core (#1240)before_streamline
Diffstat (limited to 'csharp/test/Ice/admin/TestI.cs')
-rw-r--r-- | csharp/test/Ice/admin/TestI.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/test/Ice/admin/TestI.cs b/csharp/test/Ice/admin/TestI.cs index f50f9bae96d..ae7c1fbd5e8 100644 --- a/csharp/test/Ice/admin/TestI.cs +++ b/csharp/test/Ice/admin/TestI.cs @@ -80,7 +80,7 @@ namespace ZeroC.Ice.Test.Admin // The RemoteCommunicator servant also implements PropertiesAdminUpdateCallback. var servant = new RemoteCommunicator(communicator); - if (communicator.FindAdminFacet("Properties") is IPropertiesAdmin admin) + if (communicator.FindAdminFacet("Properties") is IAsyncPropertiesAdmin admin) { admin.Updated += (_, updates) => servant.Updated(updates); } |