summaryrefslogtreecommitdiffstats
path: root/testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestProbes.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestProbes.py')
-rw-r--r--testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestProbes.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestProbes.py b/testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestProbes.py
index ac6f6b8e7..f12adec69 100644
--- a/testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestProbes.py
+++ b/testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestProbes.py
@@ -483,9 +483,12 @@ text
client.hostname = "foo.example.com"
probes.ReceiveData(client, datalist)
+ cgroups = []
+ cprobedata = ClientProbeDataSet()
self.assertItemsEqual(mock_ReceiveDataItem.call_args_list,
- [call(client, "a"), call(client, "b"),
- call(client, "c")])
+ [call(client, "a", cgroups, cprobedata),
+ call(client, "b", cgroups, cprobedata),
+ call(client, "c", cgroups, cprobedata)])
mock_write_data.assert_called_with(client)
self.assertFalse(probes.core.metadata_cache.expire.called)