@@ -22,7 +22,8 @@ def test_find_matches_single_result_in_single_snapshot(self, mock_execute):
2222[{"matches":[{"path":"/dummyfile","permissions":"-rw-r--r--","type":"file","mode":420,"mtime":"2022-01-01T10:00:00.000000000-07:00","atime":"2022-01-01T10:00:00.000000000-07:00","ctime":"2022-01-01T10:00:00.000000000-07:00","uid":10000,"gid":10000,"user":"user","group":"group","device_id":10000,"size":1024,"links":1}],"hits":1,"snapshot":"f589421bafdae95f5be5eea6285074b7ddc54aa0ffd1ad606f74d1e6207d20a3"}]
2323''' .strip ()
2424
25- # pylint: disable-next=line-too-long
25+ # Ignore complaint about too long of a line.
26+ # pylint: disable=C0301
2627 self .assertEqual ([{
2728 'matches' : [{
2829 'path' : '/dummyfile' ,
@@ -53,7 +54,8 @@ def test_find_matches_multiple_results_in_single_snapshot(
5354[{"matches":[{"path":"/dummyfile1","permissions":"-rw-r--r--","type":"file","mode":420,"mtime":"2022-01-01T10:00:00.000000000-07:00","atime":"2022-01-01T10:00:00.000000000-07:00","ctime":"2022-01-01T10:00:00.000000000-07:00","uid":10000,"gid":10000,"user":"user","group":"group","device_id":10000,"size":1024,"links":1},{"path":"/dummyfile2","permissions":"-rw-r--r--","type":"file","mode":420,"mtime":"2022-01-01T10:00:00.000000000-07:00","atime":"2022-01-01T10:00:00.000000000-07:00","ctime":"2022-01-01T10:00:00.000000000-07:00","uid":10000,"gid":10000,"user":"user","group":"group","device_id":10000,"size":1024,"links":1}],"hits":2,"snapshot":"f589421bafdae95f5be5eea6285074b7ddc54aa0ffd1ad606f74d1e6207d20a3"}]
5455''' .strip ()
5556
56- # pylint: disable-next=line-too-long
57+ # Ignore complaint about too long of a line.
58+ # pylint: disable=C0301
5759 self .assertEqual ([{
5860 'matches' : [{
5961 'path' : '/dummyfile1' ,
@@ -99,7 +101,8 @@ def test_find_matches_multiple_results_in_multiple_snapshots(
99101[{"matches":[{"path":"/dummyfile1","permissions":"-rw-r--r--","type":"file","mode":420,"mtime":"2022-01-01T10:00:00.000000000-07:00","atime":"2022-01-01T10:00:00.000000000-07:00","ctime":"2022-01-01T10:00:00.000000000-07:00","uid":10000,"gid":10000,"user":"user","group":"group","device_id":10000,"size":1024,"links":1}],"hits":1,"snapshot":"f589421bafdae95f5be5eea6285074b7ddc54aa0ffd1ad606f74d1e6207d20a3"},{"matches":[{"path":"/dummyfile2","permissions":"-rw-r--r--","type":"file","mode":420,"mtime":"2022-01-01T10:00:00.000000000-07:00","atime":"2022-01-01T10:00:00.000000000-07:00","ctime":"2022-01-01T10:00:00.000000000-07:00","uid":10000,"gid":10000,"user":"user","group":"group","device_id":10000,"size":1024,"links":1}],"hits":1,"snapshot":"g589421bafdae95f5be5eea6285074b7ddc54aa0ffd1ad606f74d1e6207d20a3"}]
100102''' .strip ()
101103
102- # pylint: disable-next=line-too-long
104+ # Ignore complaint about too long of a line.
105+ # pylint: disable=C0301
103106 self .assertEqual ([{
104107 'matches' : [{
105108 'path' : '/dummyfile1' ,
0 commit comments