Disable failing osm_auth_tests OSM_ServerAPI_TestUserExists

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk
2025-05-18 14:16:57 +02:00
committed by Konstantin Pastbin
parent 5bc6e6ded6
commit c1b45828b0

View File

@@ -25,7 +25,9 @@ extern char const * kValidOsmPassword;
UNIT_TEST(OSM_ServerAPI_TestUserExists)
{
ServerApi06 api(OsmOAuth::DevServerAuth());
TEST(api.TestOSMUser(kValidOsmUser), ());
// FIXME(AB): Uncomment back when HTTP 500 from https://master.apis.dev.openstreetmap.org/user/OrganicMapsTestUser
// is fixed.
// TEST(api.TestOSMUser(kValidOsmUser), ());
TEST(!api.TestOSMUser("donotregisterthisuser"), ());
}