Skip to content

Commit

Permalink
change spec description
Browse files Browse the repository at this point in the history
  • Loading branch information
BeritJanssen committed Oct 4, 2023
1 parent d563528 commit c3682bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/app/models/visualization.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ describe('NgramParameters', ()=> {
);
});

it('should convert themselves to a param string', () => {
it('should convert itself to a param string', () => {
const paramString = ngramParameters.toRouteParam();
expect(paramString).toEqual(
's:2,p:any,c:false,a:none,m:50,n:10,f:date'
);
});

it('should set themselvers from a param string', () => {
it('should set itself from a param string', () => {
ngramParameters.fromRouteParam(
's:3,p:first,c:true,a:none,m:50,n:20,f:date'
);
Expand Down

0 comments on commit c3682bc

Please sign in to comment.