Skip to content

Commit 5fd46be

Browse files
author
Jerry Cheung
committed
oops, wrong nesting
1 parent 20f20f8 commit 5fd46be

12 files changed

+12
-12
lines changed

test/ber/test_ber.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require_relative '../test_helper'
1+
require_relative 'test_helper'
22

33
class TestBEREncoding < Test::Unit::TestCase
44
def test_empty_array

test/test_dn.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require_relative '../test_helper'
1+
require_relative 'test_helper'
22
require 'net/ldap/dn'
33

44
class TestDN < Test::Unit::TestCase

test/test_entry.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require_relative '../test_helper'
1+
require_relative 'test_helper'
22

33
class TestEntry < Test::Unit::TestCase
44
def setup

test/test_filter.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require_relative '../test_helper'
1+
require_relative 'test_helper'
22

33
class TestFilter < Test::Unit::TestCase
44
Filter = Net::LDAP::Filter

test/test_filter_parser.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# encoding: utf-8
2-
require_relative '../test_helper'
2+
require_relative 'test_helper'
33

44
class TestFilterParser < Test::Unit::TestCase
55
def test_ascii

test/test_ldap_connection.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require_relative '../test_helper'
1+
require_relative 'test_helper'
22

33
class TestLDAPConnection < Test::Unit::TestCase
44
def test_unresponsive_host

test/test_ldif.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# $Id: testldif.rb 61 2006-04-18 20:55:55Z blackhedd $
22

3-
require_relative '../test_helper'
3+
require_relative 'test_helper'
44

55
require 'digest/sha1'
66
require 'base64'

test/test_password.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# $Id: testpsw.rb 72 2006-04-24 21:58:14Z blackhedd $
22

3-
require_relative '../test_helper'
3+
require_relative 'test_helper'
44

55
class TestPassword < Test::Unit::TestCase
66

test/test_rename.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require_relative '../test_helper'
1+
require_relative 'test_helper'
22

33
# Commented out since it assumes you have a live LDAP server somewhere. This
44
# will be migrated to the integration specs, as soon as they are ready.

test/test_search.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- ruby encoding: utf-8 -*-
2-
require_relative '../test_helper'
2+
require_relative 'test_helper'
33

44
class TestSearch < Test::Unit::TestCase
55
class FakeConnection

0 commit comments

Comments
 (0)