Skip to content
Prev Previous commit
Next Next commit
🦉 Updates from OwlBot post-processor
  • Loading branch information
gcf-owl-bot[bot] committed Oct 27, 2025
commit db90a4712409f3293fddfd0122c1ad8b3452f45e
6 changes: 3 additions & 3 deletions tests/unit/test_snapshot.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,10 +624,10 @@ class Test_SnapshotBase(OpenTelemetryBase):
def test_ctor(self):
session = build_session()
derived = _build_snapshot_derived(session=session)

# Attributes from _SessionWrapper.
self.assertIs(derived._session, session)

# Attributes from _SnapshotBase.
self.assertTrue(derived._read_only)
self.assertFalse(derived._multi_use)
Expand All @@ -636,7 +636,7 @@ def test_ctor(self):
self.assertIsNone(derived._transaction_id)
self.assertIsNone(derived._precommit_token)
self.assertIsInstance(derived._lock, type(Lock()))

self.assertNoSpans()

def test__build_transaction_selector_pb_single_use(self):
Expand Down
Loading