Skip to content

Commit

Permalink
Correction file appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ralmsdeveloper committed Oct 5, 2017
1 parent f69e89f commit d7d96a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions EntityFrameworkCore.FirebirdSql.FunctionalTests/TestInsert.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class TestInsert
private TestContext CreateContext() => new TestContext();

[Fact]
public async Task insert_data()
public void insert_data()
{
using (var context = CreateContext())
{
Expand Down Expand Up @@ -56,7 +56,7 @@ public async Task insert_data()
}
});
}
await context.SaveChangesAsync();
context.SaveChanges();
}

using (var context = CreateContext())
Expand All @@ -69,7 +69,7 @@ public async Task insert_data()
LastName = $"Almeida {i}"
});
}
await context.SaveChangesAsync();
context.SaveChanges();
}

using (var context = CreateContext())
Expand All @@ -82,7 +82,7 @@ public async Task insert_data()
Title = $"Test Insert Book {i}"
});
}
await context.SaveChangesAsync();
context.SaveChanges();
}

using (var context = CreateContext())
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ configuration:
environment:
matrix:
- name: FB 3.2
fb_download: https://www.dropbox.com/s/rz2o42smwyefinh/binarios.7z?dl=1
fb_download: https://www.dropbox.com/s/4o6nvoahmlegv64/binarios.7z?dl=1
shallow_clone: true
test: off
before_build:
Expand Down

0 comments on commit d7d96a6

Please sign in to comment.