From d6f477599dd1a2304a1dc4bbed852f9621fada12 Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Thu, 29 Aug 2024 09:05:58 -0700 Subject: [PATCH] 17289 fix tests --- netbox/users/tests/test_views.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/netbox/users/tests/test_views.py b/netbox/users/tests/test_views.py index 3dabc9dae..435d7579c 100644 --- a/netbox/users/tests/test_views.py +++ b/netbox/users/tests/test_views.py @@ -38,8 +38,8 @@ class UserTestCase( 'first_name': 'firstx', 'last_name': 'lastx', 'email': 'userx@foo.com', - 'password': 'pass1xxx', - 'confirm_password': 'pass1xxx', + 'password': 'pass1xxxABCD', + 'confirm_password': 'pass1xxxABCD', } cls.csv_data = ( @@ -84,8 +84,8 @@ class UserTestCase( self.assertHttpStatus(response, 200) # Password long enough - data['password'] = 'foobar123' - data['confirm_password'] = 'foobar123' + data['password'] = 'foobar123AD' + data['confirm_password'] = 'foobar123AD' self.assertHttpStatus(self.client.post(**request), 302)