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
Merge branch 'develop-3.x.x' into chore/unified-hybrid-tests-enabled-environment-var
develop-3.x.x now carries PR #4122 as a single squashed commit, so the four
unified files this branch also changes conflicted against their own squashed
history rather than against new work.
Conflict resolutions:
- .yamato/project.metafile: kept this branch's deletion of unified_test_filter.
The squash reintroduced it; selection is the UNIFIED_TESTS environment
variable plus NetcodeIntegrationTest.UseUnifiedTests now.
- .yamato/unified-tests.yml: kept this branch's version, which is the same job
with the UNIFIED_TESTS variable and no --testfilter.
- .yamato/_triggers.yml: took develop-3.x.x (drops a stray blank line).
- NetcodeIntegrationTest.cs: took develop-3.x.x's TODO-UNIFIED tag rename.
Incoming: the SceneManagementSynchronizationTests rework that distinguishes
scene events from connection events and adjusts the m_UseCmbService path, which
is the CMB service test fix, plus the U-PR bot config.
Assert.NotNull(expectedEvent.SceneEvent,$"Received unexpected scene event {sceneEvent.SceneEventType} at index {s_NumEventsProcessed}");
238
+
Assert.That(expectedEvent.IsSceneEvent,Is.True,$"Received unexpected scene event {sceneEvent.SceneEventType} at index {s_NumEventsProcessed}. Expected connection event: {expectedEvent.ConnectionEvent.EventType}");
Assert.NotNull(expectedEvent.ConnectionEvent,$"Received unexpected connection event {eventData.EventType} at index {s_NumEventsProcessed}");
245
+
Assert.That(expectedEvent.IsSceneEvent,Is.False,$"Received unexpected connection event {eventData.EventType} at index {s_NumEventsProcessed}. Expected scene event: {expectedEvent.ConnectionEvent.EventType}");
0 commit comments