You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current TestMain function in tests/bridge_test.go calls m.Run() after a deferred cleanup block, which prevents the deferred functions from executing correctly. This needs to be updated to ensure proper cleanup after the tests finish running.
Code to Fix
The following code is found in tests/test_file.go, starting at line 47:
Problem
The current
TestMain
function intests/bridge_test.go
callsm.Run()
after a deferred cleanup block, which prevents the deferred functions from executing correctly. This needs to be updated to ensure proper cleanup after the tests finish running.Code to Fix
The following code is found in
tests/test_file.go
, starting at line 47:The text was updated successfully, but these errors were encountered: