Skip to content

Commit

Permalink
fix: integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewmd5 committed Feb 6, 2024
1 parent f38b263 commit e2b54b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Laboratory/Integration/schema.bop
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ enum Instrument : uint16 {
Piano = 80;
}

readonly struct Musician {
struct Musician {
string name;
Instrument plays;
guid id;
Expand All @@ -19,7 +19,7 @@ message Song {
}

union Album {
1 -> struct StudioAlbum {
1 -> mut struct StudioAlbum {
Song[] tracks;
}
2 -> message LiveAlbum {
Expand All @@ -29,6 +29,6 @@ union Album {
}
}

struct Library {
mut struct Library {
map[string, Album] albums;
}

0 comments on commit e2b54b8

Please sign in to comment.