File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,8 @@ public async Task State()
7474 Assert . Equal ( ConnectionState . Open , connection . State ) ;
7575 await connection . CloseAsync ( ) ;
7676 Assert . Equal ( ConnectionState . Closed , connection . State ) ;
77+ await connection . OpenAsync ( ) ;
78+ Assert . Equal ( ConnectionState . Open , connection . State ) ;
7779 }
7880
7981 [ SkippableFact ( ConfigSettings . TcpConnection , Baseline = "https://bugs.mysql.com/bug.php?id=81650" ) ]
Original file line number Diff line number Diff line change @@ -159,6 +159,8 @@ public void State()
159159 Assert . Equal ( ConnectionState . Open , connection . State ) ;
160160 connection . Close ( ) ;
161161 Assert . Equal ( ConnectionState . Closed , connection . State ) ;
162+ connection . Open ( ) ;
163+ Assert . Equal ( ConnectionState . Open , connection . State ) ;
162164 }
163165
164166 [ Fact ]
You can’t perform that action at this time.
0 commit comments