From 5c80f3d65cac1f3b144033e6a62e86f2e7d24d44 Mon Sep 17 00:00:00 2001 From: Quentin De Coninck Date: Mon, 6 Jul 2020 14:53:55 +0200 Subject: [PATCH] fixes incorrect import name --- experiments/pquic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/experiments/pquic.py b/experiments/pquic.py index 52a4d22..76c7909 100644 --- a/experiments/pquic.py +++ b/experiments/pquic.py @@ -3,7 +3,7 @@ import logging import os -class PQUICParameter(RandomFileExperiment): +class PQUICParameter(ExperimentParameter): PLUGINS = "pquicPlugins" SIZE = "pquicSize" @@ -15,7 +15,7 @@ class PQUICParameter(RandomFileExperiment): }) -class PQUIC(RandomFileExperiment): +class PQUIC(Experiment): NAME = "pquic" PARAMETER_CLASS = PQUICParameter