Skip to content

Commit

Permalink
chore: updated test snapshots (#2029)
Browse files Browse the repository at this point in the history
  • Loading branch information
gagdiez authored Jun 27, 2023
1 parent 7ba01f8 commit b12dad1
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions test/__snapshots__/make.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -5804,7 +5804,7 @@ pub struct Contract {

impl Default for Contract {
fn default() -> Self {
Self{greeting: DEFAULT_GREETING.to_string()}
Self { greeting: DEFAULT_GREETING.to_string() }
}
}

Expand Down Expand Up @@ -5934,9 +5934,9 @@ pub struct Contract {
}

// Define the default, which automatically initializes the contract
impl Default for Contract{
fn default() -> Self{
Self{message: DEFAULT_MESSAGE.to_string()}
impl Default for Contract {
fn default() -> Self {
Self { message: DEFAULT_MESSAGE.to_string() }
}
}

Expand Down Expand Up @@ -6333,7 +6333,7 @@ pub struct Contract {

impl Default for Contract {
fn default() -> Self {
Self{greeting: DEFAULT_GREETING.to_string()}
Self { greeting: DEFAULT_GREETING.to_string() }
}
}

Expand Down Expand Up @@ -6463,9 +6463,9 @@ pub struct Contract {
}

// Define the default, which automatically initializes the contract
impl Default for Contract{
fn default() -> Self{
Self{message: DEFAULT_MESSAGE.to_string()}
impl Default for Contract {
fn default() -> Self {
Self { message: DEFAULT_MESSAGE.to_string() }
}
}

Expand Down Expand Up @@ -6873,7 +6873,7 @@ pub struct Contract {

impl Default for Contract {
fn default() -> Self {
Self{greeting: DEFAULT_GREETING.to_string()}
Self { greeting: DEFAULT_GREETING.to_string() }
}
}

Expand Down Expand Up @@ -7003,9 +7003,9 @@ pub struct Contract {
}

// Define the default, which automatically initializes the contract
impl Default for Contract{
fn default() -> Self{
Self{message: DEFAULT_MESSAGE.to_string()}
impl Default for Contract {
fn default() -> Self {
Self { message: DEFAULT_MESSAGE.to_string() }
}
}

Expand Down Expand Up @@ -8104,7 +8104,7 @@ pub struct Contract {

impl Default for Contract {
fn default() -> Self {
Self{greeting: DEFAULT_GREETING.to_string()}
Self { greeting: DEFAULT_GREETING.to_string() }
}
}

Expand Down Expand Up @@ -8234,9 +8234,9 @@ pub struct Contract {
}

// Define the default, which automatically initializes the contract
impl Default for Contract{
fn default() -> Self{
Self{message: DEFAULT_MESSAGE.to_string()}
impl Default for Contract {
fn default() -> Self {
Self { message: DEFAULT_MESSAGE.to_string() }
}
}

Expand Down Expand Up @@ -9346,7 +9346,7 @@ pub struct Contract {

impl Default for Contract {
fn default() -> Self {
Self{greeting: DEFAULT_GREETING.to_string()}
Self { greeting: DEFAULT_GREETING.to_string() }
}
}

Expand Down Expand Up @@ -9476,9 +9476,9 @@ pub struct Contract {
}

// Define the default, which automatically initializes the contract
impl Default for Contract{
fn default() -> Self{
Self{message: DEFAULT_MESSAGE.to_string()}
impl Default for Contract {
fn default() -> Self {
Self { message: DEFAULT_MESSAGE.to_string() }
}
}

Expand Down Expand Up @@ -10528,7 +10528,7 @@ pub struct Contract {

impl Default for Contract {
fn default() -> Self {
Self{greeting: DEFAULT_GREETING.to_string()}
Self { greeting: DEFAULT_GREETING.to_string() }
}
}

Expand Down Expand Up @@ -10658,9 +10658,9 @@ pub struct Contract {
}

// Define the default, which automatically initializes the contract
impl Default for Contract{
fn default() -> Self{
Self{message: DEFAULT_MESSAGE.to_string()}
impl Default for Contract {
fn default() -> Self {
Self { message: DEFAULT_MESSAGE.to_string() }
}
}

Expand Down

0 comments on commit b12dad1

Please sign in to comment.