Skip to content

Commit

Permalink
Add line after function and add missing arrange/act comment
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-lf committed Jan 31, 2024
1 parent fed31fe commit e8c6d66
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Snowflake.Data.Tests/IntegrationTests/MaxLobSizeIT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -333,10 +333,14 @@ private void CopyIntoTable(SnowflakeDbConnection conn)
{
// arrange
command.CommandText = $"COPY INTO {t_tableName}";

// act
command.ExecuteNonQuery();

// arrange
command.CommandText = $"SELECT * FROM {t_tableName}";

// act
var reader = command.ExecuteReader();

// assert
Expand Down Expand Up @@ -409,6 +413,7 @@ private void CheckColumnMetadata(DbDataReader reader)
Assert.AreEqual(0, row[SchemaTableColumn.ColumnSize]);
Assert.AreEqual(SFDataType.FIXED, (SFDataType)row[SchemaTableColumn.ProviderType]);
}

private static string GenerateRandomString(int sizeInBytes)
{
int bufferSize = sizeInBytes / 2;
Expand Down

0 comments on commit e8c6d66

Please sign in to comment.