Bug 1654469 - Fix test protocol names. r=mccr8

Differential Revision: https://phabricator.services.mozilla.com/D84656
This commit is contained in:
Simon Giesecke 2020-07-23 14:07:02 +00:00
Родитель ffb2d03581
Коммит b0cf19fc3b
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -3,7 +3,7 @@ comparable struct S {
double d;
};
sync protocol PStruct {
sync protocol PStructComparable {
parent:
sync test(S s) returns (S ss);
async __delete__();

Просмотреть файл

@ -3,7 +3,7 @@ comparable union Basic {
double;
};
sync protocol Punion_Basic {
sync protocol Punion_Comparable {
parent:
sync Msg(Basic p) returns (Basic r);