# HG changeset patch
# User Sylvain Thénault <sylvain.thenault@logilab.fr>
# Date 1270043418 -7200
#      Wed Mar 31 15:50:18 2010 +0200
# Branch stable
# Node ID 6021317707a16027e590edf5c8dbbe3e18dff20f
# Parent  a951ea9a867892c7670776b47d94774db366d3c3
test fix

diff --git a/test/unittest_link.py b/test/unittest_link.py
--- a/test/unittest_link.py
+++ b/test/unittest_link.py
@@ -30,16 +30,14 @@
         self.assertEquals(rbc(afs.relations_by_section(e, 'main', 'attributes', 'update')),
                           [('title', 'subject'), ('url', 'subject'),
                            ('embed', 'subject'),
-                           ('description', 'subject'),
-                           ('eid', 'subject')])
+                           ('description', 'subject')])
         self.create_user('toto')
         self.login('toto')
         # create a new instance with the new connection
         e = self.vreg["etypes"].etype_class('Link')(self.request())
         self.assertEquals(rbc(afs.relations_by_section(e, 'main', 'attributes', 'update')),
                           [('title', 'subject'), ('url', 'subject'),
-                           ('description', 'subject'),
-                           ('eid', 'subject')])
+                           ('description', 'subject')])
 
 if __name__ == '__main__':
     from logilab.common.testlib import unittest_main