From ab9b0a1bfe0abc6830d8e07466faa10aa8d134af Mon Sep 17 00:00:00 2001 From: vplauzon Date: Thu, 26 Oct 2023 20:48:14 -0400 Subject: [PATCH] Remove test --- .../Delta/DeltaFunctionTest.cs | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/code/DeltaKustoUnitTest/Delta/DeltaFunctionTest.cs b/code/DeltaKustoUnitTest/Delta/DeltaFunctionTest.cs index 78f9e57e..3fd960d4 100644 --- a/code/DeltaKustoUnitTest/Delta/DeltaFunctionTest.cs +++ b/code/DeltaKustoUnitTest/Delta/DeltaFunctionTest.cs @@ -121,25 +121,5 @@ public void DetectDuplicates() { } } - - [Fact] - public void DetectIntruder() - { - try - { - var function = ParseOneCommand(".create-or-alter function YourFunction() { 72 }\n\n"); - var commands = new CommandBase[] - { - function, - new DropFunctionCommand(new EntityName("myFunction")) - }; - var database = DatabaseModel.FromCommands(commands); - - throw new InvalidOperationException("This should have failed by now"); - } - catch (DeltaException) - { - } - } } } \ No newline at end of file