From 2ce5568d4151e1afe68702319130e826c164d18b Mon Sep 17 00:00:00 2001 From: Till Faelligen <2353100+S7evinK@users.noreply.github.com> Date: Fri, 17 Mar 2023 12:13:29 +0100 Subject: [PATCH] Un-skip test on Dendrite --- tests/unknown_endpoints_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/unknown_endpoints_test.go b/tests/unknown_endpoints_test.go index 716b9a04..1460fe3e 100644 --- a/tests/unknown_endpoints_test.go +++ b/tests/unknown_endpoints_test.go @@ -8,7 +8,6 @@ import ( "github.com/matrix-org/complement/internal/client" "github.com/matrix-org/complement/internal/match" "github.com/matrix-org/complement/internal/must" - "github.com/matrix-org/complement/runtime" ) func queryUnknownEndpoint(t *testing.T, user *client.CSAPI, paths []string) { @@ -38,8 +37,6 @@ func queryUnknownMethod(t *testing.T, user *client.CSAPI, method string, paths [ // Homeservers should return a 404 for unknown endpoints and 405 for incorrect // methods to known endpoints. func TestUnknownEndpoints(t *testing.T) { - runtime.SkipIf(t, runtime.Dendrite) // FIXME: https://github.com/matrix-org/dendrite/issues/2903 - deployment := Deploy(t, b.BlueprintAlice) defer deployment.Destroy(t)