File tree 1 file changed +1
-7
lines changed
1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -789,8 +789,6 @@ def __init__(self, metafunc):
789
789
self .funcargs = {}
790
790
self ._idlist = []
791
791
self .params = {}
792
- self ._globalid = NOTSET
793
- self ._globalparam = NOTSET
794
792
self ._arg2scopenum = {} # used for sorting parametrized resources
795
793
self .marks = []
796
794
self .indices = {}
@@ -803,8 +801,6 @@ def copy(self):
803
801
cs .indices .update (self .indices )
804
802
cs ._arg2scopenum .update (self ._arg2scopenum )
805
803
cs ._idlist = list (self ._idlist )
806
- cs ._globalid = self ._globalid
807
- cs ._globalparam = self ._globalparam
808
804
return cs
809
805
810
806
def _checkargnotcontained (self , arg ):
@@ -815,9 +811,7 @@ def getparam(self, name):
815
811
try :
816
812
return self .params [name ]
817
813
except KeyError :
818
- if self ._globalparam is NOTSET :
819
- raise ValueError (name )
820
- return self ._globalparam
814
+ raise ValueError (name )
821
815
822
816
@property
823
817
def id (self ):
You can’t perform that action at this time.
0 commit comments