Skip to content

Commit

Permalink
no cover
Browse files Browse the repository at this point in the history
  • Loading branch information
rakuy0 committed Oct 15, 2024
1 parent c58ab71 commit a02c0f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions synapse/tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,12 +219,12 @@ class LibDepr(s_stormtypes.Lib):
_storm_lib_path = ('depr',)
_storm_lib_deprecation = {'eolvers': 'v3.0.0'}

def addLibFuncs(self):
def addLibFuncs(self): # pragma: no cover
self.locls.update({
'boop': self.boop,
})

async def boop(self, valu):
async def boop(self, valu): # pragma: no cover
return f'You have been booped, {valu}!'

class TestType(s_types.Type):
Expand Down

0 comments on commit a02c0f9

Please sign in to comment.