Move private APIs to private namespace

Fixes #2078
This commit is contained in:
Steve Gravrock
2025-09-27 13:21:09 -07:00
parent fbec066837
commit 168ff0a751
183 changed files with 2627 additions and 2459 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
beforeEach(function() {
// env is stateful. Ensure that it, and its global error event listeners,
// do not leak between tests.
if (jasmineUnderTest.currentEnv_) {
jasmineUnderTest.currentEnv_.cleanup_();
jasmineUnderTest.currentEnv_ = null;
if (privateUnderTest.currentEnv_) {
privateUnderTest.currentEnv_.cleanup_();
privateUnderTest.currentEnv_ = null;
}
});