Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
splitice committed Jan 1, 2024
1 parent 8f3148e commit c643f9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion IPTables.Net.Tests/IptablesLibraryTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void TestDestroy()
Process.Start(binary, "-F test").WaitForExit();
Process.Start(binary, "-X test").WaitForExit();
Process.Start(binary, "-F test2").WaitForExit();
Process.Start(binary, "-X test2").WaitForExit();
//Process.Start(binary, "-X test2").WaitForExit();
Process.Start(binary, "-F test3").WaitForExit();
Process.Start(binary, "-X test3").WaitForExit();
} }
Expand Down
3 changes: 1 addition & 2 deletions IPTables.Net.Tests/IptcInterfaceTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ public void TestStartup()
var binary = GetBinary();
Execute(binary, "-F test");

Execute(binary, "-N test6666");
Execute(binary, "-N test2");
Process.Start(binary, "-N test").WaitForExit();
Process.Start(binary, "-A test -j ACCEPT").WaitForExit();
Expand Down Expand Up @@ -96,7 +95,7 @@ public void TestDestroy()
Process.Start(binary, "-F test").WaitForExit();
Process.Start(binary, "-X test").WaitForExit();
Process.Start(binary, "-F test2").WaitForExit();
Process.Start(binary, "-X test2").WaitForExit();
//Process.Start(binary, "-X test2").WaitForExit();
Process.Start(binary, "-F test3").WaitForExit();
Process.Start(binary, " - X test3").WaitForExit();
}
Expand Down

0 comments on commit c643f9e

Please sign in to comment.