~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_workingtree/test_smart_add.py

  • Committer: Patch Queue Manager
  • Date: 2016-02-01 19:13:13 UTC
  • mfrom: (6614.2.2 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20160201191313-wdfvmfff1djde6oq
(vila) Release 2.7.0 (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007, 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2007, 2009-2012, 2016 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
102
102
        self.overrideAttr(trace, 'warning', warning)
103
103
        wt.smart_add((u".",))
104
104
        self.assertIs(wt.path2id("nested"), None)
105
 
        self.assertEquals(
 
105
        self.assertEqual(
106
106
            ['skipping nested tree %r' % nested_wt.basedir], warnings)
107
107
 
108
108
    def test_add_dot_from_subdir(self):