Skip to content

Commit 8033e8a

Browse files
committed
Addressing minor issues with F# tests
1 parent df997fd commit 8033e8a

File tree

5 files changed

+1
-92
lines changed

5 files changed

+1
-92
lines changed

src/WebJobs.Script/Description/DotNet/FunctionAssemblyLoader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Microsoft.Azure.WebJobs.Script.Description
1818
public class FunctionAssemblyLoader : IDisposable
1919
{
2020
// Prefix that uniquely identifies our assemblies
21-
// i.e.: "ƒ-<functionname>"
21+
// i.e.: "f-<functionname>"
2222
public const string AssemblyPrefix = "f-";
2323
public const string AssemblySeparator = "__";
2424

test/WebJobs.Script.Tests/FSharpEndToEndTests.cs

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,6 @@ public async Task TwilioReferenceInvokeSucceeds()
3333
await TwilioReferenceInvokeSucceedsImpl(isDotNet: true);
3434
}
3535

36-
//[Fact]
37-
//public async Task MobileTables()
38-
//{
39-
// await MobileTablesTest(isDotNet: true);
40-
//}
41-
4236
[Fact]
4337
public async Task DocumentDB()
4438
{
@@ -178,24 +172,6 @@ public async Task SharedAssemblyDependenciesAreLoaded()
178172
Assert.Equal("secondary type value", request.Properties["DependencyOutput"]);
179173
}
180174

181-
//[Fact]
182-
//public async Task NugetChartingReferencesInvokeSucceeds()
183-
//{
184-
// TestHelpers.ClearFunctionLogs("NugetChartingReferences");
185-
186-
// string testData = Guid.NewGuid().ToString();
187-
// string inputName = "input";
188-
// Dictionary<string, object> arguments = new Dictionary<string, object>
189-
// {
190-
// { inputName, testData }
191-
// };
192-
// await Fixture.Host.CallAsync("NugetChartingReferences", arguments);
193-
194-
// // make sure the input string made it all the way through
195-
// var logs = await TestHelpers.GetFunctionLogsAsync("NugetChartingReferences");
196-
// Assert.True(logs.Any(p => p.Contains(testData)));
197-
//}
198-
199175
[Fact]
200176
public async Task PrivateAssemblyDependenciesAreLoaded()
201177
{

test/WebJobs.Script.Tests/TestScripts/FSharp/NugetChartingReferences/function.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

test/WebJobs.Script.Tests/TestScripts/FSharp/NugetChartingReferences/project.json

Lines changed: 0 additions & 12 deletions
This file was deleted.

test/WebJobs.Script.Tests/TestScripts/FSharp/NugetChartingReferences/run.fsx

Lines changed: 0 additions & 46 deletions
This file was deleted.

0 commit comments

Comments
 (0)