Skip to content

Commit 6658772

Browse files
committed
coverage
1 parent e21062d commit 6658772

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

synapse/lib/types.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def getVirtGetr(self, virts):
181181
raise s_exc.NoSuchVirt.init(name, self)
182182

183183
if len(virts) > 1:
184-
return (virs[1],) + virt[0].getVirtGetr(virts[1:])
184+
return (virt[1],) + virt[0].getVirtGetr(virts[1:])
185185
return (virt[1],)
186186

187187
def getRuntPode(self):

synapse/tests/test_lib_types.py

+3
Original file line numberDiff line numberDiff line change
@@ -900,6 +900,9 @@ async def test_ival(self):
900900
with self.raises(s_exc.NoSuchVirt):
901901
ival.getVirtType(['min', 'newp'])
902902

903+
with self.raises(s_exc.NoSuchVirt):
904+
ival.getVirtGetr(['min', 'newp'])
905+
903906
async def test_loc(self):
904907
model = s_datamodel.Model()
905908
loctype = model.types.get('loc')

0 commit comments

Comments
 (0)