Skip to content

Commit

Permalink
fix: asmdef issues related to runtime tests (#357)
Browse files Browse the repository at this point in the history
* fix namespace issue between components and experimental

* two removed items were null refs

* fix Component folder visibility for Runtime Tests
  • Loading branch information
uweeby committed Sep 25, 2020
1 parent ce7b8c0 commit 175b6b7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
10 changes: 4 additions & 6 deletions Assets/Mirror/Runtime/Mirror.asmdef
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
{
"name": "Mirror",
"references": [
"Mirror.CompilerSymbols",
"Telepathy"
],
"optionalUnityReferences": [],
"references": [],
"includePlatforms": [],
"excludePlatforms": [],
"allowUnsafeCode": false,
"overrideReferences": false,
"precompiledReferences": [],
"autoReferenced": true,
"defineConstraints": []
"defineConstraints": [],
"versionDefines": [],
"noEngineReferences": false
}
3 changes: 2 additions & 1 deletion Assets/Tests/Runtime/Mirror.Tests.Runtime.asmdef
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"UnityEditor.TestRunner",
"Mirror.Authenticators",
"Mirror.Weaver",
"Mirror.Experimental"
"Mirror.Experimental",
"MirrorNG"
],
"includePlatforms": [],
"excludePlatforms": [],
Expand Down
4 changes: 2 additions & 2 deletions Assets/Tests/Runtime/NetworkTransformTest.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Mirror.Experimental;
using Mirror.Tests;
using NUnit.Framework;

namespace Mirror.Tests
namespace Mirror.Experimental.Tests
{
[TestFixture]
public class NetworkTransformTest : HostSetup<NetworkTransform>
Expand Down

0 comments on commit 175b6b7

Please sign in to comment.