aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/Tests/CachedGetAssetStreamHandlerTests.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Servers/Tests/CachedGetAssetStreamHandlerTests.cs')
-rw-r--r--OpenSim/Framework/Servers/Tests/CachedGetAssetStreamHandlerTests.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Framework/Servers/Tests/CachedGetAssetStreamHandlerTests.cs b/OpenSim/Framework/Servers/Tests/CachedGetAssetStreamHandlerTests.cs
index cf19468..fed4707 100644
--- a/OpenSim/Framework/Servers/Tests/CachedGetAssetStreamHandlerTests.cs
+++ b/OpenSim/Framework/Servers/Tests/CachedGetAssetStreamHandlerTests.cs
@@ -94,9 +94,11 @@ namespace OpenSim.Framework.Servers.Tests
94 public void TestHandleFetchMissingAsset() 94 public void TestHandleFetchMissingAsset()
95 { 95 {
96 IAssetCache assetCache = new TestAssetCache(); 96 IAssetCache assetCache = new TestAssetCache();
97 CachedGetAssetStreamHandler handler = new CachedGetAssetStreamHandler(assetCache); 97 CachedGetAssetStreamHandler handler;
98 OSHttpResponse response;
99 AssetBase asset = CreateTestEnvironment(out handler, out response);
98 100
99 GetAssetStreamHandlerTestHelpers.BaseFetchMissingAsset(handler); 101 GetAssetStreamHandlerTestHelpers.BaseFetchMissingAsset(handler, response);
100 } 102 }
101 103
102 [Test] 104 [Test]