diff --git a/tests/quantization/quanto_integration/test_quanto.py b/tests/quantization/quanto_integration/test_quanto.py index e662300a4669d3..b5020f8030bf96 100644 --- a/tests/quantization/quanto_integration/test_quanto.py +++ b/tests/quantization/quanto_integration/test_quanto.py @@ -413,18 +413,18 @@ class QuantoQuantizationSerializationCudaTest(QuantoQuantizationTest): class QuantoQuantizationQBitsTensorTest(QuantoQuantizationTest): - EXPECTED_OUTPUTS = "Hello my name is John, I am a young man from the Philippines" + EXPECTED_OUTPUTS = "Hello my name is Nils, I am a student of the University" weights = "int4" class QuantoQuantizationQBitsTensorOffloadTest(QuantoQuantizationOffloadTest): - EXPECTED_OUTPUTS = "Hello my name is John, I am a young man from the Philippines" + EXPECTED_OUTPUTS = "Hello my name is Nils, I am a student of the University" weights = "int4" @unittest.skip("Skipping test class because serialization is not supported yet") class QuantoQuantizationQBitsTensorSerializationTest(QuantoQuantizationSerializationTest): - EXPECTED_OUTPUTS = "Hello my name is John, I am a young man from the Philippines" + EXPECTED_OUTPUTS = "Hello my name is Nils, I am a student of the University" weights = "int4"