Skip to content

Commit d79449e

Browse files
authored
Removing VM size check from tests. (Azure#45622)
1 parent 4db5c52 commit d79449e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

sdk/remoterendering/Azure.MixedReality.RemoteRendering/tests/RemoteRenderingLiveTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ public async Task TestSimpleSession()
135135

136136
StartRenderingSessionOperation startSessionOperation = await client.StartSessionAsync(sessionId, options);
137137
Assert.IsTrue(startSessionOperation.HasValue);
138-
Assert.AreEqual(options.Size, startSessionOperation.Value.Size);
139138
Assert.AreEqual(sessionId, startSessionOperation.Value.SessionId);
140139

141140
RenderingSession sessionProperties = await client.GetSessionAsync(sessionId);
@@ -151,7 +150,6 @@ public async Task TestSimpleSession()
151150
Assert.IsNotNull(readyRenderingSession.Host);
152151
Assert.IsNotNull(readyRenderingSession.ArrInspectorPort);
153152
Assert.IsNotNull(readyRenderingSession.HandshakePort);
154-
Assert.AreEqual(readyRenderingSession.Size, options.Size);
155153

156154
UpdateSessionOptions updateOptions2 = new UpdateSessionOptions(TimeSpan.FromMinutes(6));
157155
Assert.AreEqual(TimeSpan.FromMinutes(6), updateOptions2.MaxLeaseTime);

0 commit comments

Comments
 (0)