remove unused test

This commit is contained in:
vis2k 2021-05-20 13:10:10 +08:00
parent 0af57b1bea
commit a8249bb13d

View File

@ -299,19 +299,6 @@ public void SyncVarCacheNetidForIdentity(bool initialState)
);
}
[Test]
[TestCase(true)]
[TestCase(false)]
[Ignore("Transform backing field has not been implemented yet")]
public void SyncVarCacheNetidForTransform(bool initialState)
{
SyncVarCacheNetidForGeneric<SyncVarTransform, Transform>(
(obj) => obj.value,
(obj, value) => obj.value = value,
(identity) => identity.transform,
initialState
);
}
[Test]
[TestCase(true)]
[TestCase(false)]