From 86bb16d07bceaec1f0c506646d0456278c610173 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Fri, 11 Feb 2022 11:01:25 -0500 Subject: [PATCH] LDAPContext: sort $self hash keys --- t/lib/LDAPContext.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/lib/LDAPContext.pm b/t/lib/LDAPContext.pm index e3928a51..47188c2b 100644 --- a/t/lib/LDAPContext.pm +++ b/t/lib/LDAPContext.pm @@ -30,12 +30,12 @@ sub new { my $socket = "$root/slapd.socket"; my $self = { - _tmpdir => $root, _db_dir => $db_dir, _openldap_source => $ENV{"OPENLDAP_ROOT"}, _pid_file => $pid_file, _slapd_dir => $slapd_dir, _socket => $socket, + _tmpdir => $root, }; my $blessed = bless $self, $class;