@@ -35,7 +35,7 @@ def test_os_mkdir():
3535 actual_data = find_constructs (source , constructs )
3636
3737 # This is the expected dictionary
38- expected_data = {"os.mkdir" : [25 ]}
38+ expected_data = {"os.mkdir" : [26 ]}
3939
4040 # Assert that the actual data matches the expected data
4141 assert actual_data == expected_data
@@ -53,7 +53,7 @@ def test_os_mkfifo():
5353 actual_data = find_constructs (source , constructs )
5454
5555 # This is the expected dictionary
56- expected_data = {"os.mkfifo" : [47 ]}
56+ expected_data = {"os.mkfifo" : [48 ]}
5757
5858 # Assert that the actual data matches the expected data
5959 assert actual_data == expected_data
@@ -71,7 +71,7 @@ def test_os_mknod():
7171 actual_data = find_constructs (source , constructs )
7272
7373 # This is the expected dictionary
74- expected_data = {"os.mknod" : [64 ]}
74+ expected_data = {"os.mknod" : [65 ]}
7575
7676 # Assert that the actual data matches the expected data
7777 assert actual_data == expected_data
@@ -89,7 +89,7 @@ def test_os_makedirs():
8989 actual_data = find_constructs (source , constructs )
9090
9191 # This is the expected dictionary
92- expected_data = {"os.makedirs" : [13 , 80 ]}
92+ expected_data = {"os.makedirs" : [13 , 82 ]}
9393
9494 # Assert that the actual data matches the expected data
9595 assert actual_data == expected_data
@@ -107,7 +107,7 @@ def test_os_makedev():
107107 actual_data = find_constructs (source , constructs )
108108
109109 # This is the expected dictionary
110- expected_data = {"os.makedev" : [92 ]}
110+ expected_data = {"os.makedev" : [94 ]}
111111
112112 # Assert that the actual data matches the expected data
113113 assert actual_data == expected_data
@@ -124,9 +124,9 @@ def test_sys_calls():
124124
125125 # This is the expected dictionary
126126 expected_data = {
127- "sys.call_tracing" : [15 ],
128- "sys.setprofile" : [34 , 36 ],
129- "sys.settrace" : [41 , 43 ],
127+ "sys.call_tracing" : [12 ],
128+ "sys.setprofile" : [29 , 31 ],
129+ "sys.settrace" : [35 , 37 ],
130130 }
131131
132132 # Assert that the actual data matches the expected data
0 commit comments